diff options
Diffstat (limited to 'app/controllers')
| -rw-r--r-- | app/controllers/account_controller.rb | 17 | ||||
| -rw-r--r-- | app/controllers/users_controller.rb | 14 | 
2 files changed, 18 insertions, 13 deletions
| diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb new file mode 100644 index 0000000..ee7cca4 --- /dev/null +++ b/app/controllers/account_controller.rb @@ -0,0 +1,17 @@ +class AccountController < ApplicationController + +  before_filter :require_registration_allowed +  before_filter :redirect_if_logged_in + +  def new +    @user = User.new +  end + +  protected + +  def require_registration_allowed +    unless APP_CONFIG[:allow_registration] +      redirect_to home_path +    end +  end +end diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 2816a64..4d198b9 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -5,11 +5,9 @@  class UsersController < ApplicationController    include ControllerExtension::FetchUser -  before_filter :require_login, :except => [:new] -  before_filter :redirect_if_logged_in, :only => [:new] +  before_filter :require_login    before_filter :require_admin, :only => [:index, :deactivate, :enable]    before_filter :fetch_user, :only => [:show, :edit, :destroy, :deactivate, :enable] -  before_filter :require_registration_allowed, only: :new    respond_to :html @@ -27,10 +25,6 @@ class UsersController < ApplicationController      @users = @users.limit(100)    end -  def new -    @user = User.new -  end -    def show    end @@ -64,12 +58,6 @@ class UsersController < ApplicationController    protected -  def require_registration_allowed -    unless APP_CONFIG[:allow_registration] -      redirect_to home_path -    end -  end -    def user_params      if admin?        params.require(:user).permit(:effective_service_level) | 
