Skip to content

Commit

Permalink
fix(calling): fix-hydra-url-constant (#3950)
Browse files Browse the repository at this point in the history
Co-authored-by: Shreyas Sharma <[email protected]>
  • Loading branch information
Shreyas281299 and ShreyasSharma28 authored Nov 4, 2024
1 parent 1715035 commit 54c2042
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/calling/src/common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ export const SCIM_WEBEXIDENTITY_USER = 'urn:scim:schemas:extension:cisco:webexid
export const SCIM_ENTERPRISE_USER = 'urn:ietf:params:scim:schemas:extension:enterprise:2.0:User';
export const WEBEX_API_PROD = 'https://webexapis.com';
export const WEBEX_API_BTS = 'https://integration.webexapis.com';
export const WEBEX_API_CONFIG_INT_URL = `https://${WEBEX_API_BTS}/v1/uc/config`;
export const WEBEX_API_CONFIG_PROD_URL = `https://${WEBEX_API_PROD}/v1/uc/config`;
export const WEBEX_API_CONFIG_INT_URL = `${WEBEX_API_BTS}/v1/uc/config`;
export const WEBEX_API_CONFIG_PROD_URL = `${WEBEX_API_PROD}/v1/uc/config`;

0 comments on commit 54c2042

Please sign in to comment.