mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-10 19:48:03 -04:00
- Fixes #1867 context menu should be extensible - Added context keys to support "when" conditions on the new extensions - Fixes issue where actions like New Query, scripting show up even if these are not valid for the provider type or object type - Fixed node expansion bug where rapid connect / expand / disconnect could break the app (fix in ObjectExplorerService.onNodeExpanded) - Major change to how internal actions work. These cannot assume the context has non-serializable objects. Opened up some APIs to make this easier to handle. - Fixed a number of existing bugs in internal actions. - Notably, DisconnectAction was adding a listener on each right-click on an active connection and never getting it disposed. This wasn't needed at all due to design changes. - Another bug fix is that the Manage action now correctly navigates to the DB dashboard for database-level connections. Before this it went to the server-level dashboard. * Define API for context info
19 lines
697 B
TypeScript
19 lines
697 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
// localizable strings
|
|
|
|
export const InvalidProvider = 'Provider is invalid';
|
|
export const SerializationDisabled = 'Saving results into different format disabled for this data provider.';
|
|
|
|
/**
|
|
* Feature names
|
|
*/
|
|
export const RestoreFeatureName = 'restore';
|
|
export const BackupFeatureName = 'backup';
|
|
|
|
export const MssqlProviderId = 'MSSQL';
|
|
|