mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-12-01 03:19:04 +01:00
d4b097a88c
- Follow, undo follow - Accept follow, reject follow - Like, undo like - Block, undo block - Delete (note) - Update (actor)
15 lines
288 B
Ruby
15 lines
288 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ActivityPub::UpdateSerializer < ActiveModel::Serializer
|
|
attributes :type, :actor
|
|
|
|
has_one :object, serializer: ActivityPub::ActorSerializer
|
|
|
|
def type
|
|
'Update'
|
|
end
|
|
|
|
def actor
|
|
ActivityPub::TagManager.instance.uri_for(object)
|
|
end
|
|
end
|