Refresh storage view
This commit is contained in:
parent
492dc97a0f
commit
b3939eb122
3 changed files with 14 additions and 2 deletions
1
package-lock.json
generated
1
package-lock.json
generated
|
@ -6,6 +6,7 @@
|
|||
"packages": {
|
||||
"": {
|
||||
"version": "0.0.1",
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"dependencies": {
|
||||
"dayjs": "^1.10.4",
|
||||
"fs-extra": "^9.1.0",
|
||||
|
|
14
package.json
14
package.json
|
@ -20,8 +20,8 @@
|
|||
},
|
||||
"homepage": "https://github.com/streamlux/vscode-appwrite",
|
||||
"bugs": {
|
||||
"url": "https://github.com/streamlux/vscode-appwrite/issues",
|
||||
"email": "engineering@streamlux.com"
|
||||
"url": "https://github.com/streamlux/vscode-appwrite/issues",
|
||||
"email": "engineering@streamlux.com"
|
||||
},
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"activationEvents": [
|
||||
|
@ -159,6 +159,11 @@
|
|||
"command": "vscode-appwrite.openHealthDocumentation",
|
||||
"title": "Open health documentation",
|
||||
"icon": "$(book)"
|
||||
},
|
||||
{
|
||||
"command": "vscode-appwrite.refreshStorage",
|
||||
"title": "Refresh storage",
|
||||
"icon": "$(refresh)"
|
||||
}
|
||||
],
|
||||
"views": {
|
||||
|
@ -232,6 +237,11 @@
|
|||
"command": "vscode-appwrite.openHealthDocumentation",
|
||||
"when": "view == Health",
|
||||
"group": "navigation"
|
||||
},
|
||||
{
|
||||
"command": "vscode-appwrite.refreshStorage",
|
||||
"when": "view == Storage",
|
||||
"group": "navigation"
|
||||
}
|
||||
],
|
||||
"view/item/context": [
|
||||
|
|
|
@ -70,4 +70,5 @@ export function registerCommands(context: ExtensionContext): void {
|
|||
registerCommand("refreshHealth", () => {}, 'health');
|
||||
registerCommand("openHealthDocumentation", () => openDocumentation('health'));
|
||||
registerCommand("editPermission", editPermission, 'database');
|
||||
registerCommand("refreshStorage", () => {}, 'storage');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue