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

Allow managers to create collections (#530)

This commit is contained in:
Matt Gibson 2021-10-27 13:06:27 -05:00 committed by GitHub
parent bf6e9848e7
commit e90cc40f68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,7 +103,7 @@ export class Organization {
}
get canCreateNewCollections() {
return this.isAdmin || (this.permissions.createNewCollections ?? this.permissions.manageAllCollections);
return this.isManager || (this.permissions.createNewCollections ?? this.permissions.manageAllCollections);
}
get canEditAnyCollection() {