We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d5aee4 commit fa29638Copy full SHA for fa29638
src/Controllers/SchemaController.js
@@ -176,6 +176,8 @@ const volatileClasses = Object.freeze([
176
const userIdRegex = /^[a-zA-Z0-9]{10}$/;
177
// Anything that start with role
178
const roleRegex = /^role:.*/;
179
+// Anything that start with readUserFields
180
+const pointerPermissionRegex = /^readUserFields:.*/;
181
// * permission
182
const publicRegex = /^\*$/;
183
@@ -184,6 +186,7 @@ const requireAuthenticationRegex = /^requiresAuthentication$/;
184
186
const permissionKeyRegex = Object.freeze([
185
187
userIdRegex,
188
roleRegex,
189
+ pointerPermissionRegex,
190
publicRegex,
191
requireAuthenticationRegex,
192
]);
0 commit comments