227a8d71b3
Squashed, modified, and rebased from glitch-soc/mastodon#2221. Co-authored-by: fef <owo@fef.moe> Co-authored-by: Jeremy Kescher <jeremy@kescher.at> Co-authored-by: neatchee <neatchee@gmail.com> Co-authored-by: Ivan Rodriguez <104603218+IRod22@users.noreply.github.com> Co-authored-by: Plastikmensch <plastikmensch@users.noreply.github.com>
19 lines
443 B
Ruby
19 lines
443 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::UndoEmojiReactionSerializer < ActivityPub::Serializer
|
|
attributes :id, :type, :actor
|
|
|
|
has_one :object, serializer: ActivityPub::EmojiReactionSerializer
|
|
|
|
def id
|
|
[ActivityPub::TagManager.instance.uri_for(object.account), '#emoji_reactions/', object.id, '/undo'].join
|
|
end
|
|
|
|
def type
|
|
'Undo'
|
|
end
|
|
|
|
def actor
|
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
|
end
|
|
end
|