1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-14 00:19:16 +01:00

fix: allow backend to delete scim users

This commit is contained in:
Simon Hornby 2025-02-03 09:40:34 +02:00
parent 52f7c27787
commit 20ef0fae39
No known key found for this signature in database
GPG Key ID: 57BE3E58BA999B19

View File

@ -674,8 +674,6 @@ export default class UserAdminController extends Controller {
const { user, params } = req;
const { id } = params;
await this.throwIfScimUser({ id });
await this.userService.deleteUser(+id, req.audit);
res.status(200).send();
}