class Kadmin::Configuration
Attributes
handle_errors[RW]
@return [Boolean] if true, any Kadmin::ApplicationController will catch errors and display a custom page
logger[RW]
@return [Logger] An instance of a Ruby compatible logger
mount_path[RW]
@return [String] the path the engine is mounted at (used for authentication routes)
Public Class Methods
new()
click to toggle source
# File lib/kadmin/configuration.rb, line 17 def initialize @mount_path = '/admin' @logger = Rails.logger @navbar_items = [] @handle_errors = false end