agmcleod
agmcleod

Reputation: 13621

Setup devise with custom registration controller

I'm working on a rails site using devise, where we do not want user sign ups just yet. User authentication is so we can login to access restricted parts of the site and add/edit things as we see fit. So for now, I created the following controller:

class Users::RegistrationController < Devise::SessionsController
  def new

  end
end

And setup my routes in this fashion:

devise_for :users, :controllers => { :registration => "users/registration" }

However, when I run rake routes, I still see a returned value for the create action on the registration controller. Any ideas on how to get rid of it?

Upvotes: 5

Views: 4282

Answers (1)

salexander
salexander

Reputation: 954

Try using :registrations instead of :registration. Also, it seems like your custom controller class should be defined via:

class Users::RegistrationsController < Devise::RegistrationsController

Upvotes: 4

Related Questions