2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-03 14:38:22 +00:00
|
|
|
class Auth::ConfirmationsController < Devise::ConfirmationsController
|
|
|
|
layout 'auth'
|
2018-02-04 04:42:13 +00:00
|
|
|
|
2018-07-30 23:14:33 +00:00
|
|
|
before_action :set_body_classes
|
2018-02-04 04:42:13 +00:00
|
|
|
before_action :set_user, only: [:finish_signup]
|
|
|
|
|
|
|
|
def finish_signup
|
|
|
|
return unless request.patch? && params[:user]
|
2018-12-24 18:12:38 +00:00
|
|
|
|
2018-02-04 04:42:13 +00:00
|
|
|
if @user.update(user_params)
|
|
|
|
@user.skip_reconfirmation!
|
2018-06-21 01:41:49 +00:00
|
|
|
bypass_sign_in(@user)
|
2018-02-04 04:42:13 +00: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 23:14:33 +00:00
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'lighter'
|
|
|
|
end
|
|
|
|
|
2018-02-04 04:42:13 +00:00
|
|
|
def user_params
|
|
|
|
params.require(:user).permit(:email)
|
|
|
|
end
|
2018-12-24 18:12:38 +00:00
|
|
|
|
|
|
|
def after_confirmation_path_for(_resource_name, user)
|
|
|
|
if user.created_by_application && truthy_param?(:redirect_to_app)
|
|
|
|
user.created_by_application.redirect_uri
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
2016-10-03 14:38:22 +00:00
|
|
|
end
|