Sha256: d83eb17c12d7ba0ae54e57eab8817f53a0ac4e0ea9cf6106b9927b48a73bb158
Contents?: true
Size: 1.21 KB
Versions: 2
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true module Decidim module Admin # The main application controller that inherits from Rails. class ApplicationController < ::DecidimController include NeedsOrganization include NeedsAuthorization include FormFactory include LocaleSwitcher include PayloadInfo helper Decidim::Admin::ApplicationHelper helper Decidim::Admin::AttributesDisplayHelper helper Decidim::Admin::FeatureSettingsHelper helper Decidim::Admin::ProcessGroupsForSelectHelper helper Decidim::Admin::ProcessesForSelectHelper helper Decidim::Admin::IconLinkHelper helper Decidim::Admin::MenuHelper helper Decidim::DecidimFormHelper helper Decidim::ReplaceButtonsHelper helper Decidim::OrganizationScopesHelper helper Decidim::TranslationsHelper protect_from_forgery with: :exception, prepend: true def user_not_authorized_path decidim_admin.root_path end # Overwrites `cancancan`'s method to point to the correct ability class, # since the gem expects the ability class to be in the root namespace. def current_ability_klass Decidim::Admin::Abilities::Base end end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
decidim-admin-0.2.0 | app/controllers/decidim/admin/application_controller.rb |
decidim-0.2.0 | decidim-admin/app/controllers/decidim/admin/application_controller.rb |