2017-07-17 10:57:04 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 15:55:23 +01:00
|
|
|
class ActivityPub::UpdateSerializer < ActivityPub::Serializer
|
2018-07-13 02:16:06 +02:00
|
|
|
attributes :id, :type, :actor, :to
|
2017-07-17 10:57:04 +02:00
|
|
|
|
|
|
|
has_one :object, serializer: ActivityPub::ActorSerializer
|
|
|
|
|
2017-08-08 21:52:15 +02:00
|
|
|
def id
|
|
|
|
[ActivityPub::TagManager.instance.uri_for(object), '#updates/', object.updated_at.to_i].join
|
|
|
|
end
|
|
|
|
|
2017-07-17 10:57:04 +02:00
|
|
|
def type
|
|
|
|
'Update'
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object)
|
|
|
|
end
|
2018-07-13 02:16:06 +02:00
|
|
|
|
|
|
|
def to
|
|
|
|
[ActivityPub::TagManager::COLLECTIONS[:public]]
|
|
|
|
end
|
2017-07-17 10:57:04 +02:00
|
|
|
end
|