Allow managers to create collections (#530)
This commit is contained in:
parent
bf6e9848e7
commit
e90cc40f68
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue