This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-03 16:38:22 +02:00
|
|
|
class Auth::ConfirmationsController < Devise::ConfirmationsController
|
|
|
|
layout 'auth'
|
2018-02-04 05:42:13 +01:00
|
|
|
|
2018-07-31 01:14:33 +02:00
|
|
|
before_action :set_body_classes
|
2018-02-04 05:42:13 +01: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-21 03:41:49 +02:00
|
|
|
bypass_sign_in(@user)
|
2018-02-04 05:42:13 +01: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-31 01:14:33 +02:00
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'lighter'
|
|
|
|
end
|
|
|
|
|
2018-02-04 05:42:13 +01:00
|
|
|
def user_params
|
|
|
|
params.require(:user).permit(:email)
|
|
|
|
end
|
2016-10-03 16:38:22 +02:00
|
|
|
end
|