mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 00:43:15 +00:00
16 lines
299 B
Ruby
16 lines
299 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class ActivityPub::UndoFollowSerializer < ActiveModel::Serializer
|
||
|
attributes :type, :actor
|
||
|
|
||
|
has_one :object, serializer: ActivityPub::FollowSerializer
|
||
|
|
||
|
def type
|
||
|
'Undo'
|
||
|
end
|
||
|
|
||
|
def actor
|
||
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
||
|
end
|
||
|
end
|