summaryrefslogtreecommitdiffstats
path: root/lib/private/User
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-05-15 13:30:52 +0200
committerJoas Schilling <coding@schilljs.com>2017-05-15 13:31:31 +0200
commit975e572a3d6f01a6b7cda7de2aec8b27a7141cf0 (patch)
tree0a032f818b132b54c7582384216cf9affa0a71f3 /lib/private/User
parentcd79eb1b2ce70876a496e071af90bd601d8ddcd1 (diff)
downloadnextcloud-server-975e572a3d6f01a6b7cda7de2aec8b27a7141cf0.tar.gz
nextcloud-server-975e572a3d6f01a6b7cda7de2aec8b27a7141cf0.zip
Remove account data on user deletion
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/User')
-rw-r--r--lib/private/User/User.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/private/User/User.php b/lib/private/User/User.php
index f55807bc769..5e5d3f0d772 100644
--- a/lib/private/User/User.php
+++ b/lib/private/User/User.php
@@ -30,6 +30,7 @@
namespace OC\User;
+use OC\Accounts\AccountManager;
use OC\Files\Cache\Storage;
use OC\Hooks\Emitter;
use OC_Helper;
@@ -235,6 +236,10 @@ class User implements IUser {
$notification->setUser($this->uid);
\OC::$server->getNotificationManager()->markProcessed($notification);
+ /** @var AccountManager $accountManager */
+ $accountManager = \OC::$server->query(AccountManager::class);
+ $accountManager->deleteUser($this);
+
if ($this->emitter) {
$this->emitter->emit('\OC\User', 'postDelete', array($this));
}