feat: Add default ACL (#8701)

This commit is contained in:
Daniel
2025-03-25 01:15:27 +11:00
committed by GitHub
parent b9917dd734
commit 12b5d781dc
10 changed files with 245 additions and 5 deletions

View File

@@ -19,6 +19,11 @@ export type Schema = {
};
export type ClassLevelPermissions = {
ACL?: {
[string]: {
[string]: boolean,
},
},
find?: { [string]: boolean },
count?: { [string]: boolean },
get?: { [string]: boolean },