diff options
author | Marin Jankovski <marin@gitlab.com> | 2014-07-10 19:31:05 +0200 |
---|---|---|
committer | Marin Jankovski <marin@gitlab.com> | 2014-07-10 19:31:05 +0200 |
commit | 60cc1d8e92ad7d2be9f452cbbce8b583bc87056f (patch) | |
tree | 132f41fa930bdfbbe1d6160827cc453412a268e2 /app/controllers/registrations_controller.rb | |
parent | 108be8a666d7478e78c39c8e4e54db622f0e58dc (diff) | |
download | gitlab-ce-60cc1d8e92ad7d2be9f452cbbce8b583bc87056f.tar.gz |
Override strong params for sign up.
Diffstat (limited to 'app/controllers/registrations_controller.rb')
-rw-r--r-- | app/controllers/registrations_controller.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/registrations_controller.rb b/app/controllers/registrations_controller.rb index 8dd1642c1d9..9e70978992f 100644 --- a/app/controllers/registrations_controller.rb +++ b/app/controllers/registrations_controller.rb @@ -28,4 +28,8 @@ class RegistrationsController < Devise::RegistrationsController def signup_enabled? redirect_to new_user_session_path unless Gitlab.config.gitlab.signup_enabled end + + def sign_up_params + params.require(:user).permit(:username, :email, :name, :password, :password_confirmation) + end end |