mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
e55dce3176
* Add federation relay support * Add admin UI for managing relays * Include actor on relay-related activities * Fix i18n
40 lines
742 B
Ruby
40 lines
742 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::DeleteSerializer < ActiveModel::Serializer
|
|
class TombstoneSerializer < ActiveModel::Serializer
|
|
attributes :id, :type, :atom_uri
|
|
|
|
def id
|
|
ActivityPub::TagManager.instance.uri_for(object)
|
|
end
|
|
|
|
def type
|
|
'Tombstone'
|
|
end
|
|
|
|
def atom_uri
|
|
OStatus::TagManager.instance.uri_for(object)
|
|
end
|
|
end
|
|
|
|
attributes :id, :type, :actor, :to
|
|
|
|
has_one :object, serializer: TombstoneSerializer
|
|
|
|
def id
|
|
[ActivityPub::TagManager.instance.uri_for(object), '#delete'].join
|
|
end
|
|
|
|
def type
|
|
'Delete'
|
|
end
|
|
|
|
def actor
|
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
|
end
|
|
|
|
def to
|
|
[ActivityPub::TagManager::COLLECTIONS[:public]]
|
|
end
|
|
end
|