Module: CustomAttributes::ActsAsCustomValue::ClassMethods

Defined in:
lib/custom_attributes/acts_as/acts_as_custom_value.rb

Instance Method Summary collapse

Instance Method Details

#acts_as_custom_value(_options = {}) ⇒ Object



9
10
11
12
13
14
15
16
# File 'lib/custom_attributes/acts_as/acts_as_custom_value.rb', line 9

def acts_as_custom_value(_options = {})
  include CustomAttributes::ActsAsCustomValue::InstanceMethods

  belongs_to :custom_field
  belongs_to :customizable, polymorphic: true

  after_save :custom_field_after_save_custom_value
end