Dev/brih/revert feedbackdialog commits (#15567)

* Revert "hide support request, widen feedback dialog"

This reverts commit 1d75fcfed5.

* Revert "adding feedback dialog and support request buttons"

This reverts commit 866ced5c08.
This commit is contained in:
brian-harris
2021-05-24 17:34:16 -07:00
committed by GitHub
parent c615affdc3
commit f691701c1c
13 changed files with 8 additions and 305 deletions

View File

@@ -10,7 +10,6 @@ import { promises as fs } from 'fs';
import * as loc from './constants/strings';
import { MigrationNotebookInfo, NotebookPathHelper } from './constants/notebookPathHelper';
import { IconPathHelper } from './constants/iconPathHelper';
import { FeedbackDialog } from './dialog/feedbackDialog';
import { DashboardWidget } from './dashboard/sqlServerDashboard';
import { MigrationLocalStorage } from './models/migrationLocalStorage';
@@ -57,12 +56,6 @@ class SQLMigration {
}),
azdata.tasks.registerTask('sqlmigration.start', async () => {
await this.launchMigrationWizard();
}),
azdata.tasks.registerTask('sqlmigration.newsupportrequest', async () => {
await this.launchNewSupportRequest();
}),
azdata.tasks.registerTask('sqlmigration.sendfeedback', async () => {
await this.sendFeedback();
})
];
@@ -84,16 +77,6 @@ class SQLMigration {
await wizardController.openWizard(connectionId);
}
async launchNewSupportRequest(): Promise<void> {
await vscode.env.openExternal(vscode.Uri.parse(
`https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/newsupportrequest`));
}
async sendFeedback(): Promise<void> {
const dialog = new FeedbackDialog();
await dialog.openDialog();
}
stop(): void {
}