diff --git a/main.js b/main.js index 8b06c16d18..5735b26bfd 100644 --- a/main.js +++ b/main.js @@ -56,6 +56,14 @@ var contextMenus = [ parentId: 'MENUROOT', checked: false }, + { + type: 'radio', + id: 'Clinic', + title: 'Clinic', + contexts: contexts, + parentId: 'MENUROOT', + checked: false + }, { type: 'radio', id: 'Staging', @@ -64,6 +72,14 @@ var contextMenus = [ parentId: 'MENUROOT', checked: false }, + { + type: 'radio', + id: 'Integration', + title: 'Integration', + contexts: contexts, + parentId: 'MENUROOT', + checked: false + }, { type: 'radio', id: 'Production', @@ -86,11 +102,21 @@ function setServer(window, info) { UPLOAD_URL: 'https://dev-uploads.tidepool.org', BLIP_URL: 'https://dev-blip.tidepool.org' }, + Clinic: { + API_URL: 'https://dev-clinic-api.tidepool.org', + UPLOAD_URL: 'https://dev-clinic-uploads.tidepool.org', + BLIP_URL: 'https://dev-clinic-blip.tidepool.org' + }, Staging: { API_URL: 'https://stg-api.tidepool.org', UPLOAD_URL: 'https://stg-uploads.tidepool.org', BLIP_URL: 'https://stg-blip.tidepool.org' }, + Integration: { + API_URL: 'https://int-api.tidepool.org', + UPLOAD_URL: 'https://int-uploads.tidepool.org', + BLIP_URL: 'https://int-blip.tidepool.org' + }, Production: { API_URL: 'https://api.tidepool.org', UPLOAD_URL: 'https://uploads.tidepool.org',