Sha256: be0e5f44cb06af38ce5309d6e854ab8fa288605cd5882c381fe9bb0caaba3ab7
Contents?: true
Size: 792 Bytes
Versions: 21
Compression:
Stored size: 792 Bytes
Contents
module Itsf::Backend class HomeController < Configuration.home_base_controller.constantize helper Itsf::Backend::ApplicationHelper helper MultiClientHelper if Itsf::Backend.features?(:multi_client) def index end if Itsf::Backend.features?(:pundit) include Pundit prepend Controller::PunditNamespacedAuthorizeConcern include Controller::PunditAuthorizationFailureHandlingConcern helper_method :engine_policy after_action :verify_authorized def index authorize :engine, :access?, self.class.name.deconstantize end end layout 'itsf/backend/base' helper_method :engine def self.engine "#{name.deconstantize}::Engine".constantize end def engine self.class.engine end end end
Version data entries
21 entries across 21 versions & 1 rubygems