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