Skip to content
Snippets Groups Projects

Ban and artifacts snapshots

3 files
+ 77
1
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 18
0
@@ -106,6 +106,24 @@ class Manager
throw new \Exception('Missing User');
}
$this->logoutDelegate->logout($this->user);
$this->queueClient
->setQueue(ChannelDeferredOps::class)
->send([
'type' => 'delete',
'user_guid' => $this->user->guid
]);
return true;
}
public function deleteCleanup()
{
if (!$this->user) {
throw new \Exception('Missing User');
}
$userGuid = $this->user->guid;
foreach (static::DELETION_DELEGATES as $delegateClassName) {
Loading