2019-07-02 08:10:25 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::SearchSerializer < ActiveModel::Serializer
|
|
|
|
attributes :hashtags
|
|
|
|
|
|
|
|
has_many :accounts, serializer: REST::AccountSerializer
|
|
|
|
has_many :statuses, serializer: REST::StatusSerializer
|
2020-01-14 23:13:30 +00:00
|
|
|
has_many :groups, serializer: REST::GroupSerializer
|
2019-07-02 08:10:25 +01:00
|
|
|
|
|
|
|
def hashtags
|
|
|
|
object.hashtags.map(&:name)
|
|
|
|
end
|
|
|
|
end
|