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

chore: add deleteScimGroups to fake group store

This commit is contained in:
Simon Hornby 2025-02-03 13:28:23 +02:00
parent c61617415b
commit 5dde32e7c2
No known key found for this signature in database
GPG Key ID: 57BE3E58BA999B19

View File

@ -125,4 +125,8 @@ export default class FakeGroupStore implements IGroupStore {
hasProjectRole(groupId: number): Promise<boolean> {
throw new Error('Method not implemented.');
}
deleteScimGroups(): Promise<void> {
throw new Error('Method not implemented.');
}
}