We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 324cd85 commit 2cc1b0cCopy full SHA for 2cc1b0c
src/Controllers/SchemaController.js
@@ -358,17 +358,6 @@ class SchemaController {
358
})
359
}
360
361
-
362
- // Returns whether the schema knows the type of all these keys.
363
- hasKeys(className, keys) {
364
- for (let key of keys) {
365
- if (!this.data[className] || !this.data[className][key]) {
366
- return false;
367
- }
368
369
- return true;
370
371
372
// Returns a promise that resolves successfully to the new schema
373
// object or fails with a reason.
374
// If 'freeze' is true, refuse to modify the schema.
@@ -622,7 +611,7 @@ class SchemaController {
622
611
623
612
return Promise.resolve(this);
624
613
625
614
+
626
615
// Validates the base CLP for an operation
627
616
testBaseCLP(className, aclGroup, operation) {
628
617
if (!this.perms[className] || !this.perms[className][operation]) {
0 commit comments