Sha256: 8ea50530570b27132389ce4b5247dc823e817f6cfe1de6a5ace76152e6130a2a
Contents?: true
Size: 616 Bytes
Versions: 40
Compression:
Stored size: 616 Bytes
Contents
module ActiveAdmin # All Pages controllers inherit from this controller. class PageController < BaseController # Active admin actions don't require layout. All custom actions do. ACTIVE_ADMIN_ACTIONS = [:index] actions :index before_action :authorize_access! def index(options = {}, &block) render "active_admin/page/index" end def clear_page_actions! active_admin_config.clear_page_actions! end private def authorize_access! permission = action_to_permission(params[:action]) authorize! permission, active_admin_config end end end
Version data entries
40 entries across 40 versions & 5 rubygems