hide the backup restore commands from command palette (#2317)

This commit is contained in:
Alan Ren
2018-08-23 17:08:54 -07:00
committed by GitHub
parent 154213b705
commit 4ab5d84b94
3 changed files with 25 additions and 6 deletions

View File

@@ -15,8 +15,8 @@ import { IWorkbenchContributionsRegistry, Extensions as WorkbenchExtensions } fr
import { ShowCurrentReleaseNotesAction } from 'sql/workbench/update/releaseNotes';
import { LifecyclePhase } from 'vs/platform/lifecycle/common/lifecycle';
new Actions.BackupAction().registerTask();
new Actions.RestoreAction().registerTask();
new Actions.BackupAction().registerTask(false);
new Actions.RestoreAction().registerTask(false);
new Actions.NewQueryAction().registerTask();
new Actions.ConfigureDashboardAction().registerTask();