Method: Conformista::FormObject#save

Defined in:
lib/conformista/form_object.rb

#saveObject

Persist all models, if they are all valid. This invokes the :save hook.



73
74
75
76
77
# File 'lib/conformista/form_object.rb', line 73

def save
  run_callbacks :save do
    persist_models
  end
end