7e673d4e7f
• Added: - link/PreviewCard search to search
15 lines
396 B
Ruby
15 lines
396 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
|
|
has_many :groups, serializer: REST::GroupSerializer
|
|
has_many :links, serializer: REST::PreviewCardSerializer
|
|
|
|
def hashtags
|
|
object.hashtags.map(&:name)
|
|
end
|
|
end
|