mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-02 08:15:56 +01:00
Address CCR comments for EDU sku (#305659)
* Address comments * Fix enum values
This commit is contained in:
@@ -100,6 +100,7 @@ function getModelPickerActionBarActionProvider(commandService: ICommandService,
|
||||
const additionalActions: IAction[] = [];
|
||||
if (
|
||||
chatEntitlementService.entitlement === ChatEntitlement.Free ||
|
||||
chatEntitlementService.entitlement === ChatEntitlement.EDU ||
|
||||
chatEntitlementService.entitlement === ChatEntitlement.Pro ||
|
||||
chatEntitlementService.entitlement === ChatEntitlement.ProPlus ||
|
||||
chatEntitlementService.entitlement === ChatEntitlement.Business ||
|
||||
|
||||
@@ -80,15 +80,15 @@ export enum ChatEntitlement {
|
||||
/** Signed-up to Free */
|
||||
Free = 5,
|
||||
/** Signed-up to EDU */
|
||||
EDU = 6,
|
||||
EDU = 10,
|
||||
/** Signed-up to Pro */
|
||||
Pro = 7,
|
||||
Pro = 6,
|
||||
/** Signed-up to Pro Plus */
|
||||
ProPlus = 8,
|
||||
ProPlus = 7,
|
||||
/** Signed-up to Business */
|
||||
Business = 9,
|
||||
Business = 8,
|
||||
/** Signed-up to Enterprise */
|
||||
Enterprise = 10,
|
||||
Enterprise = 9,
|
||||
}
|
||||
|
||||
export interface IChatSentiment {
|
||||
|
||||
Reference in New Issue
Block a user