Add ActivityPub serializer for Undo of Announce (#4703)
parent
8ecfdd8795
commit
2a2698e450
@ -0,0 +1,19 @@ |
||||
# frozen_string_literal: true |
||||
|
||||
class ActivityPub::UndoAnnounceSerializer < ActiveModel::Serializer |
||||
attributes :id, :type, :actor |
||||
|
||||
has_one :object, serializer: ActivityPub::ActivitySerializer |
||||
|
||||
def id |
||||
[ActivityPub::TagManager.instance.uri_for(object.account), '#announces/', object.id, '/undo'].join |
||||
end |
||||
|
||||
def type |
||||
'Undo' |
||||
end |
||||
|
||||
def actor |
||||
ActivityPub::TagManager.instance.uri_for(object.account) |
||||
end |
||||
end |
Loading…
Reference in new issue