This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-03-04 00:19:11 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 07:55:23 -07:00
|
|
|
class ActivityPub::AddSerializer < ActivityPub::Serializer
|
2018-03-04 00:19:11 -08:00
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
attributes :type, :actor, :target
|
|
|
|
attribute :proper_object, key: :object
|
|
|
|
|
|
|
|
def type
|
|
|
|
'Add'
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def proper_object
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def target
|
2018-03-06 20:58:24 -08:00
|
|
|
account_collection_url(object.account, :featured)
|
2018-03-04 00:19:11 -08:00
|
|
|
end
|
|
|
|
end
|