Class: Flexite::Entry::UpdateService
- Inherits:
-
ActionService
- Object
- ActionService
- Flexite::Entry::UpdateService
- Defined in:
- app/services/flexite/entry/update_service.rb
Instance Method Summary collapse
Methods inherited from ActionService
Constructor Details
This class inherits a constructor from Flexite::ActionService
Instance Method Details
#call ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'app/services/flexite/entry/update_service.rb', line 5 def call if @form.invalid? return failure end record = @form.type.constantize.find(@form.id) record.value = @form.value if record.changed? record.save end success end |