This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-07-16 17:37:27 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 07:55:23 -07:00
|
|
|
class ActivityPub::PublicKeySerializer < ActivityPub::Serializer
|
|
|
|
context :security
|
|
|
|
|
2017-07-16 17:37:27 -07:00
|
|
|
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
|