mirror of
https://github.com/bitwarden/web
synced 2025-12-15 07:43:16 +00:00
Add user uses to new permission model (#1228)
(cherry picked from commit 3ee61fef96)
This commit is contained in:
@@ -80,13 +80,15 @@ export class UserAddEditComponent implements OnInit {
|
|||||||
];
|
];
|
||||||
|
|
||||||
get fallbackToManageAllCollections() {
|
get fallbackToManageAllCollections() {
|
||||||
return this.permissions.createNewCollections == null &&
|
return this.editMode &&
|
||||||
|
this.permissions.createNewCollections == null &&
|
||||||
this.permissions.editAnyCollection == null &&
|
this.permissions.editAnyCollection == null &&
|
||||||
this.permissions.deleteAnyCollection == null;
|
this.permissions.deleteAnyCollection == null;
|
||||||
}
|
}
|
||||||
|
|
||||||
get fallbackToManageAssignedCollections() {
|
get fallbackToManageAssignedCollections() {
|
||||||
return this.permissions.editAssignedCollections == null &&
|
return this.editMode &&
|
||||||
|
this.permissions.editAssignedCollections == null &&
|
||||||
this.permissions.deleteAssignedCollections == null;
|
this.permissions.deleteAssignedCollections == null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user