Compare commits

...

1 commit

Author SHA1 Message Date
alexweininger b3939eb122 Refresh storage view 2021-04-29 22:27:05 -07:00
3 changed files with 14 additions and 2 deletions

1
package-lock.json generated
View file

@ -6,6 +6,7 @@
"packages": { "packages": {
"": { "": {
"version": "0.0.1", "version": "0.0.1",
"license": "SEE LICENSE IN LICENSE.md",
"dependencies": { "dependencies": {
"dayjs": "^1.10.4", "dayjs": "^1.10.4",
"fs-extra": "^9.1.0", "fs-extra": "^9.1.0",

View file

@ -20,8 +20,8 @@
}, },
"homepage": "https://github.com/streamlux/vscode-appwrite", "homepage": "https://github.com/streamlux/vscode-appwrite",
"bugs": { "bugs": {
"url": "https://github.com/streamlux/vscode-appwrite/issues", "url": "https://github.com/streamlux/vscode-appwrite/issues",
"email": "engineering@streamlux.com" "email": "engineering@streamlux.com"
}, },
"license": "SEE LICENSE IN LICENSE.md", "license": "SEE LICENSE IN LICENSE.md",
"activationEvents": [ "activationEvents": [
@ -159,6 +159,11 @@
"command": "vscode-appwrite.openHealthDocumentation", "command": "vscode-appwrite.openHealthDocumentation",
"title": "Open health documentation", "title": "Open health documentation",
"icon": "$(book)" "icon": "$(book)"
},
{
"command": "vscode-appwrite.refreshStorage",
"title": "Refresh storage",
"icon": "$(refresh)"
} }
], ],
"views": { "views": {
@ -232,6 +237,11 @@
"command": "vscode-appwrite.openHealthDocumentation", "command": "vscode-appwrite.openHealthDocumentation",
"when": "view == Health", "when": "view == Health",
"group": "navigation" "group": "navigation"
},
{
"command": "vscode-appwrite.refreshStorage",
"when": "view == Storage",
"group": "navigation"
} }
], ],
"view/item/context": [ "view/item/context": [

View file

@ -70,4 +70,5 @@ export function registerCommands(context: ExtensionContext): void {
registerCommand("refreshHealth", () => {}, 'health'); registerCommand("refreshHealth", () => {}, 'health');
registerCommand("openHealthDocumentation", () => openDocumentation('health')); registerCommand("openHealthDocumentation", () => openDocumentation('health'));
registerCommand("editPermission", editPermission, 'database'); registerCommand("editPermission", editPermission, 'database');
registerCommand("refreshStorage", () => {}, 'storage');
} }