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-08-26 06:32:40 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 07:55:23 -07:00
|
|
|
class ActivityPub::UndoAnnounceSerializer < ActivityPub::Serializer
|
2018-07-12 17:16:06 -07:00
|
|
|
attributes :id, :type, :actor, :to
|
2017-08-26 06:32:40 -07:00
|
|
|
|
|
|
|
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
|
2018-07-12 17:16:06 -07:00
|
|
|
|
|
|
|
def to
|
|
|
|
[ActivityPub::TagManager::COLLECTIONS[:public]]
|
|
|
|
end
|
2017-08-26 06:32:40 -07:00
|
|
|
end
|