undo_follow_serializer.rb 421 B

12345678910111213141516171819
  1. # frozen_string_literal: true
  2. class ActivityPub::UndoFollowSerializer < ActivityPub::Serializer
  3. attributes :id, :type, :actor
  4. has_one :object, serializer: ActivityPub::FollowSerializer
  5. def id
  6. [ActivityPub::TagManager.instance.uri_for(object.account), '#follows/', object.id, '/undo'].join
  7. end
  8. def type
  9. 'Undo'
  10. end
  11. def actor
  12. ActivityPub::TagManager.instance.uri_for(object.account)
  13. end
  14. end