Change copilot settings call to use new backend endpoint. (#1781)

* Change copilot settings call to use new backend endpoint.

* Refactor EndpointUtils function for new backend enablement.
This commit is contained in:
jawelton74
2024-04-04 10:18:50 -07:00
committed by GitHub
parent db50f42832
commit 7f6338b68b
5 changed files with 30 additions and 10 deletions

View File

@@ -124,8 +124,9 @@ export enum MongoBackendEndpointType {
remote,
}
export enum BackendApi {
GenerateToken,
export class BackendApi {
public static readonly GenerateToken: string = "GenerateToken";
public static readonly PortalSettings: string = "PortalSettings";
}
export class PortalBackendEndpoints {