suggestion.rb 180 B

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