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:
Diffstat (limited to 'app/controllers/registrations_controller.rb')
-rw-r--r--app/controllers/registrations_controller.rb41
1 files changed, 0 insertions, 41 deletions
diff --git a/app/controllers/registrations_controller.rb b/app/controllers/registrations_controller.rb
deleted file mode 100644
index 38d116a4ee3..00000000000
--- a/app/controllers/registrations_controller.rb
+++ /dev/null
@@ -1,41 +0,0 @@
-class RegistrationsController < Devise::RegistrationsController
- before_filter :signup_enabled?
-
- def new
- redirect_to(new_user_session_path)
- end
-
- def destroy
- current_user.destroy
-
- respond_to do |format|
- format.html { redirect_to new_user_session_path, notice: "Account successfully removed." }
- end
- end
-
- protected
-
- def build_resource(hash=nil)
- super
- end
-
- def after_sign_up_path_for(_resource)
- new_user_session_path
- end
-
- def after_inactive_sign_up_path_for(_resource)
- new_user_session_path
- end
-
- private
-
- def signup_enabled?
- unless current_application_settings.signup_enabled?
- redirect_to(new_user_session_path)
- end
- end
-
- def sign_up_params
- params.require(:user).permit(:username, :email, :name, :password, :password_confirmation)
- end
-end