2014-09-02 18:07:02 +05:30
|
|
|
class RegistrationsController < Devise::RegistrationsController
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :signup_enabled?
|
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
|
|
|
|
|
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
|
|
|
|
end
|