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! endIn your routes.rb
devise_for :users, :controllers => { :registrations => 'registrations'}