Sha256: 13cf61c4791b025d0e62d017f574a71e7bee223fb48749372dcb328352077034
Contents?: true
Size: 585 Bytes
Versions: 6
Compression:
Stored size: 585 Bytes
Contents
# frozen_string_literal: true module Decidim module ReportingProposals module Admin # This controller is the abstract class from which all other controllers of # this engine inherit. # # Note that it inherits from `Decidim::Admin::Components::BaseController`, which # override its layout and provide all kinds of useful methods. class ApplicationController < Decidim::Admin::ApplicationController def permission_class_chain [::Decidim::ReportingProposals::Admin::Permissions] + super end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems