Skip to content
Snippets Groups Projects
Unverified Commit 6d2080a7 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Add account hashtags to ActivityPub actor JSON (#9450)

parent 426d7191
No related branches found
No related tags found
No related merge requests found
......@@ -105,7 +105,7 @@ class ActivityPub::ActorSerializer < ActiveModel::Serializer
end
def virtual_tags
object.emojis
object.emojis + object.tags
end
def virtual_attachments
......@@ -119,6 +119,24 @@ class ActivityPub::ActorSerializer < ActiveModel::Serializer
class CustomEmojiSerializer < ActivityPub::EmojiSerializer
end
class TagSerializer < ActiveModel::Serializer
include RoutingHelper
attributes :type, :href, :name
def type
'Hashtag'
end
def href
explore_hashtag_url(object)
end
def name
"##{object.name}"
end
end
class Account::FieldSerializer < ActiveModel::Serializer
attributes :type, :name, :value
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment