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::UndoLikeSerializer < ActiveModel::Serializer
|
2017-08-08 12:52:15 -07:00
|
|
|
attributes :id, :type, :actor
|
2017-07-17 01:57:04 -07:00
|
|
|
|
|
|
|
has_one :object, serializer: ActivityPub::LikeSerializer
|
|
|
|
|
2017-08-08 12:52:15 -07:00
|
|
|
def id
|
|
|
|
[ActivityPub::TagManager.instance.uri_for(object.account), '#likes/', object.id, '/undo'].join
|
|
|
|
end
|
|
|
|
|
2017-07-17 01:57:04 -07:00
|
|
|
def type
|
|
|
|
'Undo'
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
|
|
|
end
|
|
|
|
end
|