mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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
|