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-07-17 01:57:04 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::DeleteSerializer < ActiveModel::Serializer
|
2017-08-08 12:52:15 -07:00
|
|
|
attributes :id, :type, :actor
|
2017-07-17 01:57:04 -07:00
|
|
|
attribute :virtual_object, key: :object
|
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
def id
|
|
|
|
[ActivityPub::TagManager.instance.uri_for(object), '#delete'].join
|
|
|
|
end
|
|
|
|
|
2017-07-17 01:57:04 -07:00
|
|
|
def type
|
|
|
|
'Delete'
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def virtual_object
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object)
|
|
|
|
end
|
|
|
|
end
|