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-17 01:57:04 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 07:55:23 -07:00
|
|
|
class ActivityPub::AcceptFollowSerializer < ActivityPub::Serializer
|
2017-08-08 12:52:15 -07:00
|
|
|
attributes :id, :type, :actor
|
2017-07-17 01:57:04 -07:00
|
|
|
|
2017-08-18 17:23:47 -07:00
|
|
|
has_one :object, serializer: ActivityPub::FollowSerializer
|
2017-07-17 01:57:04 -07:00
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
def id
|
|
|
|
[ActivityPub::TagManager.instance.uri_for(object.target_account), '#accepts/follows/', object.id].join
|
|
|
|
end
|
|
|
|
|
2017-07-17 01:57:04 -07:00
|
|
|
def type
|
|
|
|
'Accept'
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.target_account)
|
|
|
|
end
|
|
|
|
end
|