Skip to content
Snippets Groups Projects
registrations_controller.rb 1.29 KiB
Newer Older
  • Learn to ignore specific revisions
  • Marin Jankovski's avatar
    Marin Jankovski committed
    class RegistrationsController < Devise::RegistrationsController
    
      before_action :signup_enabled?
    
      def new
        redirect_to(new_user_session_path)
      end
    
    
      def create
        if !Gitlab.config.recaptcha.enabled || verify_recaptcha
          super
        else
          flash[:alert] = "There was an error with the reCAPTCHA code below. Please re-enter the code."
          flash.delete :recaptcha_error
          render action: 'new'
        end
      end
    
    
    Marin Jankovski's avatar
    Marin Jankovski committed
      def destroy
    
        DeleteUserService.new(current_user).execute(current_user)
    
    Marin Jankovski's avatar
    Marin Jankovski committed
    
        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)
    
      def after_inactive_sign_up_path_for(_resource)
    
    Marin Jankovski's avatar
    Marin Jankovski committed
      private
    
      def signup_enabled?
    
        unless current_application_settings.signup_enabled?
    
          redirect_to(new_user_session_path)
    
    Marin Jankovski's avatar
    Marin Jankovski committed
      end
    
    
      def sign_up_params
        params.require(:user).permit(:username, :email, :name, :password, :password_confirmation)
      end
    
    
      def resource_name
        :user
      end
    
      def resource
        @resource ||= User.new
      end
    
      def devise_mapping
        @devise_mapping ||= Devise.mappings[:user]
      end