2014-09-02 18:07:02 +05:30
|
|
|
class RegistrationsController < Devise::RegistrationsController
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :signup_enabled?
|
2016-01-14 18:37:52 +05:30
|
|
|
include Recaptcha::Verify
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def new
|
|
|
|
redirect_to(new_user_session_path)
|
|
|
|
end
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
def create
|
|
|
|
if !Gitlab::Recaptcha.load_configurations! || 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
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
def destroy
|
2015-09-11 14:41:01 +05:30
|
|
|
DeleteUserService.new(current_user).execute(current_user)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
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
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def after_sign_up_path_for(_resource)
|
2014-09-02 18:07:02 +05:30
|
|
|
new_user_session_path
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def after_inactive_sign_up_path_for(_resource)
|
2014-09-02 18:07:02 +05:30
|
|
|
new_user_session_path
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def signup_enabled?
|
2015-04-26 12:48:37 +05:30
|
|
|
unless current_application_settings.signup_enabled?
|
|
|
|
redirect_to(new_user_session_path)
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def sign_up_params
|
|
|
|
params.require(:user).permit(:username, :email, :name, :password, :password_confirmation)
|
|
|
|
end
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
|
|
def resource_name
|
|
|
|
:user
|
|
|
|
end
|
|
|
|
|
|
|
|
def resource
|
|
|
|
@resource ||= User.new(sign_up_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
def devise_mapping
|
|
|
|
@devise_mapping ||= Devise.mappings[:user]
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|