Class: Decidim::DecidimAwesome::Admin::MenuHacksController
Overview
Constant Summary
ConfigConstraintsHelpers::OTHER_MANIFESTS
Instance Method Summary
collapse
#check, #component_manifests, #components_list, #config_enabled?, #enabled_configs, #md5, #menus, #participatory_space_manifests, #participatory_spaces_list, #translate_constraint_value
extended, included
#permission_class_chain
Instance Method Details
#create ⇒ Object
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# File 'app/controllers/decidim/decidim_awesome/admin/menu_hacks_controller.rb', line 26
def create
@form = form(MenuForm).from_params(params)
CreateMenuHack.call(@form, ) do
on(:ok) do
flash[:notice] = I18n.t("menu_hacks.create.success", scope: "decidim.decidim_awesome.admin")
redirect_to decidim_admin_decidim_awesome.
end
on(:invalid) do |message|
flash.now[:alert] = I18n.t("menu_hacks.create.error", error: message, scope: "decidim.decidim_awesome.admin")
render :new
end
end
end
|
#destroy ⇒ Object
60
61
62
63
64
65
66
67
68
69
70
|
# File 'app/controllers/decidim/decidim_awesome/admin/menu_hacks_controller.rb', line 60
def destroy
DestroyMenuHack.call(, , current_organization) do
on(:ok) do
flash[:notice] = I18n.t("menu_hacks.destroy.success", scope: "decidim.decidim_awesome.admin")
end
on(:invalid) do |error|
flash[:alert] = I18n.t("menu_hacks.destroy.error", scope: "decidim.decidim_awesome.admin", error: error)
end
end
redirect_to decidim_admin_decidim_awesome.
end
|
#edit ⇒ Object
41
42
43
|
# File 'app/controllers/decidim/decidim_awesome/admin/menu_hacks_controller.rb', line 41
def edit
@form = form(MenuForm).from_model()
end
|
#index ⇒ Object
20
|
# File 'app/controllers/decidim/decidim_awesome/admin/menu_hacks_controller.rb', line 20
def index; end
|
#new ⇒ Object
22
23
24
|
# File 'app/controllers/decidim/decidim_awesome/admin/menu_hacks_controller.rb', line 22
def new
@form = form(MenuForm).instance
end
|
#update ⇒ Object
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# File 'app/controllers/decidim/decidim_awesome/admin/menu_hacks_controller.rb', line 45
def update
@form = form(MenuForm).from_params(params)
UpdateMenuHack.call(@form, ) do
on(:ok) do
flash[:notice] = I18n.t("menu_hacks.update.success", scope: "decidim.decidim_awesome.admin")
redirect_to decidim_admin_decidim_awesome.
end
on(:invalid) do |message|
flash.now[:alert] = I18n.t("menu_hacks.update.error", error: message, scope: "decidim.decidim_awesome.admin")
render :edit
end
end
end
|