mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 21:21:11 +01:00
12 lines
283 B
Ruby
12 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
|