We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Devise is installed by default.
If needed, you can tweak the authentication hooks it in your rails_admin.rb initializer:
rails_admin.rb
Example for Warden with an 'admin' scope:
config.authenticate_with do warden.authenticate! :scope => :admin end config.current_user_method { current_admin } # hook to your 'current_user' method