This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-03 07:38:22 -07:00
|
|
|
class Auth::ConfirmationsController < Devise::ConfirmationsController
|
|
|
|
layout 'auth'
|
2018-02-03 20:42:13 -08:00
|
|
|
|
2018-07-30 16:14:33 -07:00
|
|
|
before_action :set_body_classes
|
2018-02-03 20:42:13 -08:00
|
|
|
before_action :set_user, only: [:finish_signup]
|
|
|
|
|
|
|
|
# GET/PATCH /users/:id/finish_signup
|
|
|
|
def finish_signup
|
|
|
|
return unless request.patch? && params[:user]
|
|
|
|
if @user.update(user_params)
|
|
|
|
@user.skip_reconfirmation!
|
2018-06-20 18:41:49 -07:00
|
|
|
bypass_sign_in(@user)
|
2018-02-03 20:42:13 -08:00
|
|
|
redirect_to root_path, notice: I18n.t('devise.confirmations.send_instructions')
|
|
|
|
else
|
|
|
|
@show_errors = true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_user
|
|
|
|
@user = current_user
|
|
|
|
end
|
|
|
|
|
2018-07-30 16:14:33 -07:00
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'lighter'
|
|
|
|
end
|
|
|
|
|
2018-02-03 20:42:13 -08:00
|
|
|
def user_params
|
|
|
|
params.require(:user).permit(:email)
|
|
|
|
end
|
2016-10-03 07:38:22 -07:00
|
|
|
end
|