Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarin Jankovski <marin@gitlab.com>2014-07-10 21:31:05 +0400
committerMarin Jankovski <marin@gitlab.com>2014-07-10 21:31:05 +0400
commit60cc1d8e92ad7d2be9f452cbbce8b583bc87056f (patch)
tree132f41fa930bdfbbe1d6160827cc453412a268e2 /app/controllers/registrations_controller.rb
parent108be8a666d7478e78c39c8e4e54db622f0e58dc (diff)
Override strong params for sign up.
Diffstat (limited to 'app/controllers/registrations_controller.rb')
-rw-r--r--app/controllers/registrations_controller.rb4
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