Sha256: 267514c76b6a054c36fb8da97eb570c32cb8bde4da73ea8e4db43f8f9bd26e7c
Contents?: true
Size: 1.09 KB
Versions: 11
Compression:
Stored size: 1.09 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 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
11 entries across 11 versions & 2 rubygems