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