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