I'm using Rails 3.1.7 and ActiveAdmin 0.3.4 (which depends on Devise 2.1.2). After bundling and running rails g active_admin:install and then rake db:migrate, I'm able to load localhost:3000/admin just fine, but when I try to log in using the default email and password, I get the following error:
Unknown action
Could not find devise mapping for path "/admin/login". This may happen for two reasons: 1) You forgot to wrap your route inside the scope block. For example: devise_scope :user do match "/some/route" => "some_devise_controller" end 2) You are testing a Devise controller bypassing the router. If so, you can explicitly tell Devise which mapping to use: @request.env["devise.mapping"] = Devise.mappings[:user]
I'm using the standard routes generated by ActiveAdmin (nothing custom), so I don't think either of these cases applies. And running rake routes shows both a GET and POST route exist:
new_admin_user_session GET /admin/login(.:format) {:action=>"new", :controller=>"active_admin/devise/sessions"}
admin_user_session POST /admin/login(.:format) {:action=>"create", :controller=>"active_admin/devise/sessions"}
I've tried removing everything from routes.rb except this:
Myapp::Application.routes.draw do
ActiveAdmin.routes(self)
devise_for :admin_users, ActiveAdmin::Devise.config
root to: 'static_pages#home'
end
But I still get the "Unknown Action" exception. Any ideas what could be going on?
Edit: Curiously, I am able to log in by resetting my password (after you confirm a new password it logs you in and directs you to the dashboard), which at least proves that other Devise actions work just fine.