mirror of
https://github.com/glitch-soc/mastodon
synced 2025-09-11 11:01:13 +00:00
7 lines
172 B
Ruby
7 lines
172 B
Ruby
# frozen_string_literal: true
|
|
|
|
class REST::SuggestionSerializer < ActiveModel::Serializer
|
|
attributes :source
|
|
|
|
has_one :account, serializer: REST::AccountSerializer
|
|
end
|