mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 23:59:43 +01:00
Support transferring interactive sessions across workspaces (#185702)
--------- Co-authored-by: Rob Lourens <roblourens@gmail.com>
This commit is contained in:
@@ -1298,6 +1298,10 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
|
||||
get onDidPerformUserAction() {
|
||||
checkProposedApiEnabled(extension, 'interactiveUserActions');
|
||||
return extHostChat.onDidPerformUserAction;
|
||||
},
|
||||
transferChatSession(session: vscode.InteractiveSession, toWorkspace: vscode.Uri) {
|
||||
checkProposedApiEnabled(extension, 'interactive');
|
||||
return extHostChat.transferChatSession(session, toWorkspace);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user