2021-04-24 08:01:43 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AccountSuggestions::Suggestion < ActiveModelSerializers::Model
|
2024-02-06 09:10:17 -08:00
|
|
|
attributes :account, :sources
|
2021-04-24 08:01:43 -07:00
|
|
|
|
|
|
|
delegate :id, to: :account, prefix: true
|
|
|
|
end
|