blob: c1b3f888ea8f405b822569af908ecbed846a4e07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Settings\Listener;
use OCA\Settings\Service\AuthorizedGroupService;
use OCP\EventDispatcher\Event;
use OCP\EventDispatcher\IEventListener;
use OCP\Group\Events\GroupDeletedEvent;
/** @template-implements IEventListener<GroupDeletedEvent> */
class GroupRemovedListener implements IEventListener {
public function __construct(
private AuthorizedGroupService $authorizedGroupService,
) {
}
/**
* @inheritDoc
*/
public function handle(Event $event): void {
if (!($event instanceof GroupDeletedEvent)) {
return;
}
/** @var GroupDeletedEvent $event */
$this->authorizedGroupService->removeAuthorizationAssociatedTo($event->getGroup());
}
}
|