Change endpoint

This commit is contained in:
kcheekuri 2021-11-10 12:56:08 -05:00
parent 4a50d138cd
commit f9d91061a7
3 changed files with 6 additions and 5 deletions

View File

@ -58,6 +58,7 @@ let configContext: Readonly<ConfigContext> = {
allowedJunoOrigins: [
"https://juno-test.documents-dev.windows-int.net",
"https://juno-test2.documents-dev.windows-int.net",
"https://juno-test3.documents-dev.windows-int.net",
"https://tools.cosmos.azure.com",
"https://tools-staging.cosmos.azure.com",
"https://localhost",

View File

@ -215,10 +215,10 @@ export const useNotebook: UseStore<NotebookState> = create((set, get) => ({
};
const gitHubNotebooksContentRoot = notebookManager?.gitHubOAuthService?.isLoggedIn()
? {
name: "GitHub repos",
path: "PsuedoDir",
type: NotebookContentItemType.Directory,
}
name: "GitHub repos",
path: "PsuedoDir",
type: NotebookContentItemType.Directory,
}
: undefined;
set({

View File

@ -165,7 +165,7 @@ export class PhoenixClient {
}
public getPhoenixContainerPoolingEndPoint(): string {
return `${PhoenixClient.getPhoenixEndpoint()}/api/controlplane/toolscontainer`;
return `${PhoenixClient.getPhoenixEndpoint()}/api/controlplane/toolscontainer/cosmosaccounts`;
}
private static getHeaders(): HeadersInit {