diff options
author | Azul <azul@leap.se> | 2013-11-06 11:55:43 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-11-06 11:55:43 +0100 |
commit | ded302ebc6a9e145775f7847c5e89f91d683c777 (patch) | |
tree | 890ea32fbbdfc9ccda2e05bbcce4b32b537b2cea /users/app/controllers/users_controller.rb | |
parent | 24598b5c5e4df20c423ec74ea8e9df1592483c6b (diff) |
use the account lifecycle from UsersController#destroy
Diffstat (limited to 'users/app/controllers/users_controller.rb')
-rw-r--r-- | users/app/controllers/users_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/app/controllers/users_controller.rb b/users/app/controllers/users_controller.rb index de21983..3cbb6dc 100644 --- a/users/app/controllers/users_controller.rb +++ b/users/app/controllers/users_controller.rb @@ -47,7 +47,7 @@ class UsersController < UsersBaseController end def destroy - @user.destroy + @user.account.destroy flash[:notice] = I18n.t(:account_destroyed) # admins can destroy other users if @user != current_user |