suggestion.rb 179 B

1234567
  1. # frozen_string_literal: true
  2. class AccountSuggestions::Suggestion < ActiveModelSerializers::Model
  3. attributes :account, :source
  4. delegate :id, to: :account, prefix: true
  5. end