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.

When I try to create a custom devise controller:

class RegistrationsController < Devise::RegistrationsController
  def new
    super
  end

  def create
    # add custom create logic here
  end

  def update
    super
  end
end  

I get a following error:

Unknown action

AbstractController::ActionNotFound

It is not the problem with routes. I tried to inherit RegistrationsController from ApplicationController and it works fine. As soon as i try to inherit from Devise::RegistrationsController it shows an error. It can't be an action problem to, becuse I tried to create a different action, and I get the same error.

# app/config/routes.rb
devise_for :users, :controllers => {:registrations => "registrations"}
root :to => "registrations#new"

Using Rails 3.0.4

share|improve this question
did you try to add respond_to block? – Sergey Kishenin Mar 23 '11 at 11:05

2 Answers

In your routes you have to use devise_scope if you are overriding devise default actions.

devise_for :users, :controllers => {:registrations => "registrations"}
devise_scope :user do
    root :to => "registrations#new"
end 

For a similar issue please see http://groups.google.com/group/plataformatec-devise/browse_thread/thread/a5beaaf4b1ad343a

Also here are the docs on changing default sign in routes, I know this you are doing registration, but this could be similar: https://github.com/plataformatec/devise/wiki/How-To:-Change-the-default-sign_in-and-sign_out-routes

share|improve this answer
Thanks, I will check out that – Janjiss Mar 25 '11 at 7:19

I used the following code in my project successfully:

app/controllers/users/registrations_controller.rb
class Users::RegistrationsController < Devise::RegistrationsController
end

routes.rb
devise_for :users, :controllers => { :registrations => "users/registrations" }
share|improve this answer
I guess this is the case when you are using users namespace. – dombesz Mar 23 '11 at 11:15
I had same problem with namespaces. – Janjiss Mar 25 '11 at 7:14

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.