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