mirror of https://github.com/mastodon/mastodon
Add public key declaration to actors (#4215)
parent
a3202fd51e
commit
a47c2e8890
@ -0,0 +1,17 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class ActivityPub::PublicKeySerializer < ActiveModel::Serializer
|
||||||
|
attributes :id, :owner, :public_key_pem
|
||||||
|
|
||||||
|
def id
|
||||||
|
[ActivityPub::TagManager.instance.uri_for(object), '#main-key'].join
|
||||||
|
end
|
||||||
|
|
||||||
|
def owner
|
||||||
|
ActivityPub::TagManager.instance.uri_for(object)
|
||||||
|
end
|
||||||
|
|
||||||
|
def public_key_pem
|
||||||
|
object.public_key
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue