Skip to content

Commit

Permalink
invalidate oauth2 tokens only for seen users
Browse files Browse the repository at this point in the history
Signed-off-by: Artur Neumann <[email protected]>
  • Loading branch information
individual-it committed Apr 17, 2023
1 parent a5348bc commit 22cf072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/oauth2/lib/Controller/SettingsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public function addClient(string $name,
public function deleteClient(int $id): JSONResponse {
$client = $this->clientMapper->getByUid($id);

$this->userManager->callForAllUsers(function (IUser $user) use ($client) {
$this->userManager->callForSeenUsers(function (IUser $user) use ($client) {
$this->tokenProvider->invalidateTokensOfUser($user->getUID(), $client->getName());
});

Expand Down

0 comments on commit 22cf072

Please sign in to comment.