Method: Comfy::Admin::Cms::SnippetsController#update
- Defined in:
- app/controllers/comfy/admin/cms/snippets_controller.rb
#update ⇒ Object
34 35 36 37 38 39 40 41 |
# File 'app/controllers/comfy/admin/cms/snippets_controller.rb', line 34 def update @snippet.update!(snippet_params) flash[:success] = I18n.t("comfy.admin.cms.snippets.updated") redirect_to action: :edit, id: @snippet rescue ActiveRecord::RecordInvalid flash.now[:danger] = I18n.t("comfy.admin.cms.snippets.update_failure") render action: :edit end |