2019-07-02 03:10:25 -04: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 18:13:30 -05:00
|
|
|
has_many :groups, serializer: REST::GroupSerializer
|
2019-07-02 03:10:25 -04:00
|
|
|
|
|
|
|
def hashtags
|
|
|
|
object.hashtags.map(&:name)
|
|
|
|
end
|
|
|
|
end
|