Sha256: 7c8ba523420efb202672c27070c7532c9a79b5edd424aed50901f64628261afe
Contents?: true
Size: 1023 Bytes
Versions: 87
Compression:
Stored size: 1023 Bytes
Contents
# frozen_string_literal: true module Decidim module Pages module Admin # This controller allows the user to update a Page. class PagesController < Admin::ApplicationController def edit enforce_permission_to :update, :page @form = form(Admin::PageForm).from_model(page) end def update enforce_permission_to :update, :page @form = form(Admin::PageForm).from_params(params) Admin::UpdatePage.call(@form, page) do on(:ok) do flash[:notice] = I18n.t("pages.update.success", scope: "decidim.pages.admin") redirect_to parent_path end on(:invalid) do flash.now[:alert] = I18n.t("pages.update.invalid", scope: "decidim.pages.admin") render action: "edit" end end end private def page @page ||= Pages::Page.find_by(component: current_component) end end end end end
Version data entries
87 entries across 87 versions & 1 rubygems