feat: Add "count" to CLP initial value (#5841)
* feat: count CLP default values * fix tests
This commit is contained in:
committed by
Diamond Lewis
parent
a5fb38b0b2
commit
4fe0ff6ebf
@@ -11,6 +11,7 @@ describe('MongoSchemaCollection', () => {
|
||||
_client_permissions: {
|
||||
get: true,
|
||||
find: true,
|
||||
count: true,
|
||||
update: true,
|
||||
create: true,
|
||||
delete: true,
|
||||
@@ -19,6 +20,7 @@ describe('MongoSchemaCollection', () => {
|
||||
class_permissions: {
|
||||
get: { '*': true },
|
||||
find: { '*': true },
|
||||
count: { '*': true },
|
||||
update: { '*': true },
|
||||
create: { '*': true },
|
||||
delete: { '*': true },
|
||||
@@ -69,6 +71,7 @@ describe('MongoSchemaCollection', () => {
|
||||
classLevelPermissions: {
|
||||
find: { '*': true },
|
||||
get: { '*': true },
|
||||
count: { '*': true },
|
||||
create: { '*': true },
|
||||
update: { '*': true },
|
||||
delete: { '*': true },
|
||||
|
||||
Reference in New Issue
Block a user