Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
I tried to figure this out but I'm at a loss here. I even created a separate branch and installed an up to date version of ActiveAdmin (0.6.0) knowing that I would have to upgrade Formtastic but I still get the same error. I might be too deep down in Warden for me to figure out. :( – bennick May 8 at 23:48

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.