Class: Decidim::Initiatives::Admin::InitiativesTypesController

Inherits:
ApplicationController show all
Includes:
TranslatableAttributes
Defined in:
decidim-initiatives/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb

Overview

Controller used to manage the available initiative types for the current organization.

Instance Method Summary collapse

Methods included from TranslatableAttributes

#default_locale?

Methods inherited from ApplicationController

#permission_class_chain, #permissions_context

Methods inherited from Admin::ApplicationController

#permission_class_chain, #permission_scope, #user_has_no_permission_path, #user_not_authorized_path

Methods included from Headers::HttpCachingDisabler

#disable_http_caching

Methods included from NeedsSnippets

#snippets

Methods included from RegistersPermissions

register_permissions

Methods included from NeedsOrganization

enhance_controller, extended, included

Instance Method Details

#createObject

POST /admin/initiatives_types



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'decidim-initiatives/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb', line 31

def create
  enforce_permission_to :create, :initiative_type
  @form = initiative_type_form.from_params(params)

  CreateInitiativeType.call(@form, current_user) do
    on(:ok) do |initiative_type|
      flash[:notice] = I18n.t("decidim.initiatives.admin.initiatives_types.create.success")
      redirect_to edit_initiatives_type_path(initiative_type)
    end

    on(:invalid) do
      flash.now[:alert] = I18n.t("decidim.initiatives.admin.initiatives_types.create.error")
      render :new
    end
  end
end

#destroyObject

DELETE /admin/initiatives_types/:id



77
78
79
80
81
82
83
84
85
86
87
# File 'decidim-initiatives/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb', line 77

def destroy
  enforce_permission_to :destroy, :initiative_type, initiative_type: current_initiative_type

  Decidim.traceability.perform_action!("delete", current_initiative_type, current_user) do
    current_initiative_type.destroy!
  end

  redirect_to initiatives_types_path, flash: {
    notice: I18n.t("decidim.initiatives.admin.initiatives_types.destroy.success")
  }
end

#editObject

GET /admin/initiatives_types/:id/edit



49
50
51
52
53
54
# File 'decidim-initiatives/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb', line 49

def edit
  enforce_permission_to :edit, :initiative_type, initiative_type: current_initiative_type
  @form = initiative_type_form
          .from_model(current_initiative_type,
                      initiative_type: current_initiative_type)
end

#indexObject

GET /admin/initiatives_types



18
19
20
21
22
# File 'decidim-initiatives/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb', line 18

def index
  enforce_permission_to :index, :initiative_type

  @initiatives_types = InitiativeTypes.for(current_organization)
end

#newObject

GET /admin/initiatives_types/new



25
26
27
28
# File 'decidim-initiatives/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb', line 25

def new
  enforce_permission_to :create, :initiative_type
  @form = initiative_type_form.instance
end

#updateObject

PUT /admin/initiatives_types/:id



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'decidim-initiatives/app/controllers/decidim/initiatives/admin/initiatives_types_controller.rb', line 57

def update
  enforce_permission_to :update, :initiative_type, initiative_type: current_initiative_type

  @form = initiative_type_form
          .from_params(params, initiative_type: current_initiative_type)

  UpdateInitiativeType.call(current_initiative_type, @form, current_user) do
    on(:ok) do
      flash[:notice] = I18n.t("decidim.initiatives.admin.initiatives_types.update.success")
      redirect_to edit_initiatives_type_path(current_initiative_type)
    end

    on(:invalid) do
      flash.now[:alert] = I18n.t("decidim.initiatives.admin.initiatives_types.update.error")
      render :edit
    end
  end
end