Path: blob/main/src/vs/workbench/contrib/chat/browser/actions/chatTransfer.ts
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { IWorkbenchContribution } from '../../../../common/contributions.js';6import { Disposable } from '../../../../../base/common/lifecycle.js';7import { IChatTransferService } from '../../common/chatTransferService.js';89export class ChatTransferContribution extends Disposable implements IWorkbenchContribution {10static readonly ID = 'workbench.contrib.chatTransfer';1112constructor(13@IChatTransferService chatTransferService: IChatTransferService,14) {15super();16chatTransferService.checkAndSetTransferredWorkspaceTrust();17}18}192021