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