1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

[EC-338] Update SCIM code naming conventions (revoked/restore) (#3160)

This commit is contained in:
Thomas Rittson
2022-07-25 10:47:56 +10:00
committed by GitHub
parent 8694227b92
commit 0f44789d0f
15 changed files with 87 additions and 95 deletions

View File

@@ -120,12 +120,12 @@ export class PeopleComponent
return this.apiService.deleteProviderUser(this.providerId, id);
}
deactivateUser(id: string): Promise<any> {
revokeUser(id: string): Promise<any> {
// Not implemented.
return null;
}
activateUser(id: string): Promise<any> {
restoreUser(id: string): Promise<any> {
// Not implemented.
return null;
}