Sha256: 67d8cd60ad34f6d840134f4ea7a26e5832b83560ec92eff67cfce22979377e84
Contents?: true
Size: 1.32 KB
Versions: 4
Compression:
Stored size: 1.32 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::SettingsHelper helper Decidim::Admin::ProcessGroupsForSelectHelper helper Decidim::Admin::ProcessesForSelectHelper helper Decidim::Admin::IconLinkHelper helper Decidim::Admin::MenuHelper helper Decidim::Admin::ScopesHelper helper Decidim::DecidimFormHelper helper Decidim::ReplaceButtonsHelper helper Decidim::ScopesHelper helper Decidim::TranslationsHelper helper Decidim::LanguageChooserHelper helper Decidim::FeaturePathHelper 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::BaseAbility end end end end
Version data entries
4 entries across 4 versions & 2 rubygems