mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 08:38:56 +01:00
Start hooking up using uri for opening custom chat sessions
This commit is contained in:
@@ -952,6 +952,10 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
|
||||
checkProposedApiEnabled(extension, 'chatStatusItem');
|
||||
return extHostChatStatus.createChatStatusItem(extension, id);
|
||||
},
|
||||
showChatSession: (chatSessionType: string, sessionId: string, options?: vscode.ChatSessionShowOptions) => {
|
||||
checkProposedApiEnabled(extension, 'chatSessionsProvider');
|
||||
return extHostChatSessions.showChatSession(extension, chatSessionType, sessionId, options);
|
||||
},
|
||||
};
|
||||
|
||||
// namespace: workspace
|
||||
|
||||
Reference in New Issue
Block a user