Disallow account deletion after confirmation
This commit is contained in:
parent
14bd660114
commit
b5f8df642a
2 changed files with 28 additions and 5 deletions
|
@ -53,12 +53,16 @@ class AccountsController < ApplicationController
|
|||
end
|
||||
|
||||
def destroy
|
||||
current_user.soft_destroy!
|
||||
if current_user.deletion_allowed?
|
||||
current_user.soft_destroy!
|
||||
|
||||
session.delete(:user)
|
||||
session_expires_automatically
|
||||
session.delete(:user)
|
||||
session_expires_automatically
|
||||
|
||||
flash[:notice] = t ".success"
|
||||
redirect_to root_path
|
||||
flash[:notice] = t ".success"
|
||||
redirect_to root_path
|
||||
else
|
||||
head :bad_request
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue