Sha256: 8d789db41afd936cb297f165fd9a952030db3e9ac54c7f2252a8e8813d4203dd
Contents?: true
Size: 1.13 KB
Versions: 6
Compression:
Stored size: 1.13 KB
Contents
# frozen_string_literal: true require_dependency "decidim/admin/application_controller" module Decidim module Admin # Controller that allows managing the user organization. # class OrganizationController < ApplicationController layout "decidim/admin/settings" def edit authorize! :update, current_organization @form = form(OrganizationForm).from_model(current_organization) end def update authorize! :update, current_organization @form = form(OrganizationForm).from_params(form_params) UpdateOrganization.call(current_organization, @form) do on(:ok) do flash[:notice] = I18n.t("organization.update.success", scope: "decidim.admin") redirect_to edit_organization_path end on(:invalid) do flash.now[:alert] = I18n.t("organization.update.error", scope: "decidim.admin") render :edit end end end private def form_params params[:organization] ||= {} params[:organization][:id] ||= current_organization.id params end end end end
Version data entries
6 entries across 6 versions & 2 rubygems