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 am using Devise for Rails 3.2.1 app. I want to block the sign_up so that only a superuser/administrator can add new users. How do i achieve that?

(Update) I tried the tip suggested in Devise before filter that prevents access to "new_user_registration_path" unless user is signed-in

but it does not work, since the added controller is apparently not password-protecting the new route "/users/registrations":

Create a Controller with class Devise::RegistrationsController heriting. After you can add your filter. You just need define this controller like registration controller

class RegistrationsController < Devise::RegistrationsController
  before_filter :authenticate_user!
end

In your routes.rb

devise_for :users, :controllers => { :registrations => 'registrations'}
share|improve this question

1 Answer

I would suggest that you create a CRUD only available to the super user and he will be able to create users instead of restricting access to the registration path to only the super user. You can find help for it here: https://github.com/plataformatec/devise/wiki/How-To:-Manage-users-through-a-CRUD-interface.

In case you want to use the registration, I would do almost the same you put on your answer but the before_filter should be something like this:

before_filter :authenticate_user!, :redirect_unless_admin

# (...)

private
def redirect_unless_admin
  unless current_user.admin        
    redirect_to root_path
  end
end
share|improve this answer

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.