1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-19 17:13:48 -05:00

13 lines
283 B
Ruby

# frozen_string_literal: true
class REST::SearchSerializer < ActiveModel::Serializer
attributes :hashtags
has_many :accounts, serializer: REST::AccountSerializer
has_many :statuses, serializer: REST::StatusSerializer
def hashtags
object.hashtags.map(&:name)
end
end