This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-07-17 10:57:04 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::AcceptFollowSerializer < ActiveModel::Serializer
|
2017-08-08 21:52:15 +02:00
|
|
|
attributes :id, :type, :actor
|
2017-07-17 10:57:04 +02:00
|
|
|
|
2017-08-19 02:23:47 +02:00
|
|
|
has_one :object, serializer: ActivityPub::FollowSerializer
|
2017-07-17 10:57:04 +02:00
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
def id
|
|
|
|
[ActivityPub::TagManager.instance.uri_for(object.target_account), '#accepts/follows/', object.id].join
|
|
|
|
end
|
|
|
|
|
2017-07-17 10:57:04 +02:00
|
|
|
def type
|
|
|
|
'Accept'
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.target_account)
|
|
|
|
end
|
|
|
|
end
|