1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-19 02:51:14 +02:00

[Reset Password] Custom user permission (#317)

This commit is contained in:
Vincent Salucci 2021-04-06 08:47:16 -05:00 committed by GitHub
parent baca6d7966
commit 97ece68dec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,6 +12,7 @@ export class PermissionsApi extends BaseResponse {
manageSso: boolean;
managePolicies: boolean;
manageUsers: boolean;
manageResetPassword: boolean;
constructor(data: any = null) {
super(data);
@ -29,5 +30,6 @@ export class PermissionsApi extends BaseResponse {
this.manageSso = this.getResponseProperty('ManageSso');
this.managePolicies = this.getResponseProperty('ManagePolicies');
this.manageUsers = this.getResponseProperty('ManageUsers');
this.manageResetPassword = this.getResponseProperty('ManageResetPassword');
}
}