mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-24 09:04:00 -05:00
8 lines
180 B
Ruby
8 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AccountSuggestions::Suggestion < ActiveModelSerializers::Model
|
|
attributes :account, :sources
|
|
|
|
delegate :id, to: :account, prefix: true
|
|
end
|