Class: Spree::OptionValue
- Defined in:
- app/models/spree/option_value.rb
Instance Method Summary collapse
-
#presentation_with_option_type ⇒ String
A string representation of all option value and its option type.
-
#touch_all_variants ⇒ Object
Updates the updated_at column on all the variants associated with this option value.
Methods inherited from Base
Methods included from Core::Permalinks
#generate_permalink, #save_permalink
Instance Method Details
#presentation_with_option_type ⇒ String
Returns a string representation of all option value and its option type.
38 39 40 |
# File 'app/models/spree/option_value.rb', line 38 def presentation_with_option_type "#{option_type.presentation} - #{presentation}" end |
#touch_all_variants ⇒ Object
Updates the updated_at column on all the variants associated with this option value.
32 33 34 |
# File 'app/models/spree/option_value.rb', line 32 def touch_all_variants variants.find_each(&:touch) end |