Skip to content
Snippets Groups Projects
Commit 774b8661 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Revert #4616 (#4638)

parent c7d2619a
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
class ActivityPub::AcceptFollowSerializer < ActiveModel::Serializer
attributes :id, :type, :actor
has_one :object, serializer: ActivityPub::InverseFollowSerializer
has_one :object, serializer: ActivityPub::FollowSerializer
def id
[ActivityPub::TagManager.instance.uri_for(object.target_account), '#accepts/follows/', object.id].join
......
# frozen_string_literal: true
class ActivityPub::InverseFollowSerializer < ActiveModel::Serializer
attributes :id, :type, :actor
attribute :virtual_object, key: :object
def id
[ActivityPub::TagManager.instance.uri_for(object.target_account), '#follows/', object.id].join
end
def type
'Follow'
end
def actor
ActivityPub::TagManager.instance.uri_for(object.target_account)
end
def virtual_object
ActivityPub::TagManager.instance.uri_for(object.account)
end
end
......@@ -3,7 +3,7 @@
class ActivityPub::RejectFollowSerializer < ActiveModel::Serializer
attributes :id, :type, :actor
has_one :object, serializer: ActivityPub::InverseFollowSerializer
has_one :object, serializer: ActivityPub::FollowSerializer
def id
[ActivityPub::TagManager.instance.uri_for(object.target_account), '#rejects/follows/', object.id].join
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment