This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-07-06 19:02:06 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class REST::SearchSerializer < ActiveModel::Serializer
|
|
|
|
has_many :accounts, serializer: REST::AccountSerializer
|
|
|
|
has_many :statuses, serializer: REST::StatusSerializer
|
2019-09-13 07:11:13 -07:00
|
|
|
has_many :hashtags, serializer: REST::TagSerializer
|
2017-07-06 19:02:06 -07:00
|
|
|
end
|