mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-21 01:25:37 -05:00
remove circular dependency between server group and connection management (#6916)
This commit is contained in:
@@ -5,7 +5,6 @@
|
||||
|
||||
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
|
||||
|
||||
import { IConnectionManagementService } from 'sql/platform/connection/common/connectionManagement';
|
||||
import { ConnectionProfileGroup } from 'sql/platform/connection/common/connectionProfileGroup';
|
||||
|
||||
export interface IServerGroupDialogCallbacks {
|
||||
@@ -15,6 +14,6 @@ export interface IServerGroupDialogCallbacks {
|
||||
export const IServerGroupController = createDecorator<IServerGroupController>('serverGroupController');
|
||||
export interface IServerGroupController {
|
||||
_serviceBrand: any;
|
||||
showCreateGroupDialog(connectionManagementService: IConnectionManagementService, callbacks?: IServerGroupDialogCallbacks): Promise<void>;
|
||||
showEditGroupDialog(connectionManagementService: IConnectionManagementService, group: ConnectionProfileGroup): Promise<void>;
|
||||
showCreateGroupDialog(callbacks?: IServerGroupDialogCallbacks): Promise<void>;
|
||||
showEditGroupDialog(group: ConnectionProfileGroup): Promise<void>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user