diff options
author | Shuhei Kitagawa <shuheiktgw@users.noreply.github.com> | 2018-06-21 10:41:49 +0900 |
---|---|---|
committer | Yamagishi Kazutoshi <ykzts@desire.sh> | 2018-06-21 10:41:49 +0900 |
commit | 7f59206944193591d7aef5cbd73edc7f5303add7 (patch) | |
tree | b61e752b7fde95d4eaf16a944f4addfd20e86858 | |
parent | 459394a02021ae927d135669e7472a4c7c32eaec (diff) |
Replace bypass option with bypass_sign_in (#7867)
-rw-r--r-- | app/controllers/auth/confirmations_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/auth/confirmations_controller.rb b/app/controllers/auth/confirmations_controller.rb index a240425cd..068e71cad 100644 --- a/app/controllers/auth/confirmations_controller.rb +++ b/app/controllers/auth/confirmations_controller.rb @@ -10,7 +10,7 @@ class Auth::ConfirmationsController < Devise::ConfirmationsController return unless request.patch? && params[:user] if @user.update(user_params) @user.skip_reconfirmation! - sign_in(@user, bypass: true) + bypass_sign_in(@user) redirect_to root_path, notice: I18n.t('devise.confirmations.send_instructions') else @show_errors = true |