add new support request buttons (#16045)

* add new support request buttons

* hide feedback and new support incedent commands from command palette
This commit is contained in:
brian-harris
2021-08-02 13:29:27 -07:00
committed by GitHub
parent 244e27c2de
commit 919cc732b7
7 changed files with 55 additions and 1 deletions

View File

@@ -15,6 +15,7 @@
"activationEvents": [
"onDashboardOpen",
"onCommand:sqlmigration.start",
"onCommand:sqlmigration.newsupportrequest",
"onCommand:sqlmigration.sendfeedback",
"onCommand:sqlmigration.openNotebooks"
],
@@ -34,6 +35,12 @@
"category": "%migration-command-category%",
"icon": "./images/migration.svg"
},
{
"command": "sqlmigration.newsupportrequest",
"title": "%new-support-request-command%",
"category": "%migration-command-category%",
"icon": "./images/newSupportRequest.svg"
},
{
"command": "sqlmigration.sendfeedback",
"title": "%send-feedback-command%",
@@ -78,6 +85,10 @@
],
"menu": {
"commandPalette": [
{
"command": "sqlmigration.newsupportrequest",
"when": "false"
},
{
"command": "sqlmigration.sendfeedback",
"when": "false"
@@ -128,6 +139,7 @@
"widget": {
"tasks-widget": [
"sqlmigration.start",
"sqlmigration.newsupportrequest",
"sqlmigration.sendfeedback"
]
}