blob: 2c6f4d27f5ce6ed63d5f1a1a339799cb19702cc4 (
plain) (
blame)
1
2
3
4
5
6
7
|
# frozen_string_literal: true
class AccountSuggestions::Suggestion < ActiveModelSerializers::Model
attributes :account, :source
delegate :id, to: :account, prefix: true
end
|