Class: Decidim::DecidimAwesome::Admin::ScopedAdminsController
- Inherits:
-
ConfigController
- Object
- Admin::ApplicationController
- ApplicationController
- ConfigController
- Decidim::DecidimAwesome::Admin::ScopedAdminsController
- Defined in:
- app/controllers/decidim/decidim_awesome/admin/scoped_admins_controller.rb
Overview
Global configuration controller
Constant Summary
Constants included from ConfigConstraintsHelpers
ConfigConstraintsHelpers::OTHER_MANIFESTS
Instance Method Summary collapse
Methods inherited from ConfigController
#rename_scope_label, #show, #update, #users
Methods included from ConfigConstraintsHelpers
#check, #component_manifests, #components_list, #enabled_configs, #md5, #participatory_space_manifests, #participatory_spaces_list, #translate_constraint_value
Methods included from NeedsAwesomeConfig
Methods inherited from ApplicationController
Instance Method Details
#create ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'app/controllers/decidim/decidim_awesome/admin/scoped_admins_controller.rb', line 8 def create CreateScopedAdmin.call(current_organization) do on(:ok) do |key| flash[:notice] = I18n.t("config.create_scoped_admin.success", key:, scope: "decidim.decidim_awesome.admin") end on(:invalid) do || flash[:alert] = I18n.t("config.create_scoped_admin.error", error: , scope: "decidim.decidim_awesome.admin") end end redirect_to decidim_admin_decidim_awesome.config_path(:admins) end |
#destroy ⇒ Object
22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'app/controllers/decidim/decidim_awesome/admin/scoped_admins_controller.rb', line 22 def destroy DestroyScopedAdmin.call(params[:key], current_organization) do on(:ok) do |key| flash[:notice] = I18n.t("config.destroy_scoped_admin.success", key:, scope: "decidim.decidim_awesome.admin") end on(:invalid) do || flash[:alert] = I18n.t("config.destroy_scoped_admin.error", error: , scope: "decidim.decidim_awesome.admin") end end redirect_to decidim_admin_decidim_awesome.config_path(:admins) end |