Redirect to "/users/sign_in" after AccountDeletion
There is no point to redirect to "/stream" after the account deletion because the user is logged off.
This commit is contained in:
parent
a414fb2381
commit
77bd220e24
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ class UsersController < ApplicationController
|
||||||
if params[:user] && params[:user][:current_password] && current_user.valid_password?(params[:user][:current_password])
|
if params[:user] && params[:user][:current_password] && current_user.valid_password?(params[:user][:current_password])
|
||||||
current_user.close_account!
|
current_user.close_account!
|
||||||
sign_out current_user
|
sign_out current_user
|
||||||
redirect_to(stream_path, :notice => I18n.t('users.destroy.success'))
|
redirect_to(new_user_session_path(format: request[:format]), notice: I18n.t("users.destroy.success"))
|
||||||
else
|
else
|
||||||
if params[:user].present? && params[:user][:current_password].present?
|
if params[:user].present? && params[:user][:current_password].present?
|
||||||
flash[:error] = t 'users.destroy.wrong_password'
|
flash[:error] = t 'users.destroy.wrong_password'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue