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 37aded5 commit 0ff34afCopy full SHA for 0ff34af
src/components/general/extensions/ExtensionLoader.vue
@@ -88,7 +88,7 @@ onMounted(async () => {
88
ExtensionsManager.runInSandbox({
89
id,
90
code,
91
- // TODO handle permissions
+ // TODO: handle pre-defined permissions
92
"globals": {},
93
});
94
}
src/constants/permissions.ts
@@ -15,8 +15,9 @@ export const Permissions = {
15
"Write": "write-external-storage",
16
},
17
"InternalStorage": {
18
- "Read" : "read-internal-storage",
19
- "Write": "write-internal-storage",
+ "Read" : "read-internal-storage",
+ "Write" : "write-internal-storage",
20
+ "Logging": "write-to-log-file",
21
22
} as const;
23
export const PermissionsList: Array<PermissionType> = Object
0 commit comments