Im having dificulty in setting the root page in may Rails app to the default login page of the Active Admin gems, at localhost:3000/admin/login. Here\'s my routes.rb:
Tell rails you want the default root to go to the admin namespace, dashboard controller, index action:
root to: "admin/dashboard#index"
You can edit the Active Admin config file: config/initializers/active_admin.rb
config/initializers/active_admin.rb
config.root_to = 'admin/dashboard#index'