2018-01-04 13:40:49 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 14:55:23 +00:00
|
|
|
class ActivityPub::DeleteActorSerializer < ActivityPub::Serializer
|
2018-07-13 00:16:06 +00:00
|
|
|
attributes :id, :type, :actor, :to
|
2018-01-04 13:40:49 +00:00
|
|
|
attribute :virtual_object, key: :object
|
|
|
|
|
|
|
|
def id
|
|
|
|
[ActivityPub::TagManager.instance.uri_for(object), '#delete'].join
|
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
|
|
|
'Delete'
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def virtual_object
|
|
|
|
actor
|
|
|
|
end
|
2018-07-13 00:16:06 +00:00
|
|
|
|
|
|
|
def to
|
|
|
|
[ActivityPub::TagManager::COLLECTIONS[:public]]
|
|
|
|
end
|
2018-01-04 13:40:49 +00:00
|
|
|
end
|