File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ module.exports = {
34
34
FEEDBACK_URL : 'https://eforms.ucsd.edu/view.php?id=175631' ,
35
35
QUICKLINKS_API_URL : 'https://s3-us-west-2.amazonaws.com/ucsd-its-wts/now_ucsandiego/v1/quick_links/ucsd-quicklinks-v3.json' ,
36
36
PARKING_API_URL : 'https://b2waxbcovi.execute-api.us-west-2.amazonaws.com/prod/parking/v1.1/status' ,
37
- OCCUSPACE_API_URL : 'https://api-qa .ucsd.edu:8243/occuspace/v1.0' ,
38
- QA_MOBILE_API_URL : 'https://api-qa .ucsd.edu:8243/token' ,
37
+ OCCUSPACE_API_URL : 'https://api.ucsd.edu:8243/occuspace/v1.0' ,
38
+ MOBILE_API_AUTH_URL : 'https://api.ucsd.edu:8243/token' ,
39
39
MY_STUDENT_CONTACT_API_URL : 'https://api.ucsd.edu:8243/student/my/student_contact_info/v1' ,
40
40
MY_STUDENT_PROFILE_API_URL : 'https://api.ucsd.edu:8243/student/my/v1' ,
41
41
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ const AppSettings = require('../AppSettings')
2
2
3
3
const mobileAuthService = {
4
4
retrieveAccessToken ( base64Secret ) {
5
- return fetch ( AppSettings . QA_MOBILE_API_URL , {
5
+ return fetch ( AppSettings . MOBILE_API_AUTH_URL , {
6
6
method : 'POST' ,
7
7
headers : {
8
8
'Authorization' : 'Basic ' + base64Secret ,
Original file line number Diff line number Diff line change @@ -79,6 +79,8 @@ if (REPLACEMENT_ENV === 'prod' || REPLACEMENT_ENV === 'qa') {
79
79
{ prodVal : myEnv . SI_SESSIONS_API_URL_PROD , qaVal : myEnv . SI_SESSIONS_API_URL_QA } ,
80
80
{ prodVal : myEnv . MY_STUDENT_CONTACT_API_URL_PROD , qaVal : myEnv . MY_STUDENT_CONTACT_API_URL_QA } ,
81
81
{ prodVal : myEnv . MY_STUDENT_PROFILE_API_URL_PROD , qaVal : myEnv . MY_STUDENT_PROFILE_API_URL_QA } ,
82
+ { prodVal : myEnv . MOBILE_API_AUTH_URL_PROD , qaVal : myEnv . MOBILE_API_AUTH_URL_QA } ,
83
+ { prodVal : myEnv . OCCUSPACE_API_URL_PROD , qaVal : myEnv . OCCUSPACE_API_URL_QA } ,
82
84
] )
83
85
84
86
// ssoService.js
You can’t perform that action at this time.
0 commit comments