Class: Kms::BelongsToField

Inherits:
Field
  • Object
show all
Defined in:
app/models/kms/belongs_to_field.rb

Instance Method Summary collapse

Instance Method Details

#get_value(entry) ⇒ Object



3
4
5
6
7
# File 'app/models/kms/belongs_to_field.rb', line 3

def get_value(entry)
  entry_id = entry.values[liquor_name]
  association_record = Kms::Entry.find_by(id: entry_id)
  Liquor::DropDelegation.wrap_element(association_record)
end