You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
464 B

  1. # frozen_string_literal: true
  2. class ActivityPub::RemoveSerializer < ActivityPub::Serializer
  3. include RoutingHelper
  4. attributes :type, :actor, :target
  5. attribute :proper_object, key: :object
  6. def type
  7. 'Remove'
  8. end
  9. def actor
  10. ActivityPub::TagManager.instance.uri_for(object.account)
  11. end
  12. def proper_object
  13. ActivityPub::TagManager.instance.uri_for(object)
  14. end
  15. def target
  16. account_collection_url(object.account, :featured)
  17. end
  18. end