The code powering m.abunchtell.com https://m.abunchtell.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

25 行
450 B

  1. # frozen_string_literal: true
  2. class ActivityPub::AddSerializer < ActiveModel::Serializer
  3. include RoutingHelper
  4. attributes :type, :actor, :target
  5. attribute :proper_object, key: :object
  6. def type
  7. 'Add'
  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, :featured)
  17. end
  18. end