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