Skip to content

Commit

Permalink
Fixed mt-sso mixin URL mismatches
Browse files Browse the repository at this point in the history
  • Loading branch information
htres736 authored Apr 14, 2022
1 parent 267569d commit 9cbc585
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/mixins/mt_auth_mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ export default Mixin.create({
if (host === 'enc-test.mathematicalthinking.org') {
return 'https://sso-test.mathematicalthinking.org';
}

if (host === 'enc-test1.mathematicalthinking.org') {
return 'https://sso-test.mathematicalthinking.org';
return 'https://sso-test1.mathematicalthinking.org';
}

if (host === 'enc-staging.mathematicalthinking.org') {
return 'https://sso-test.mathematicalthinking.org';
return 'https://sso-staging.mathematicalthinking.org';
}

if (host === 'localhost:8082') {
return 'http://localhost:3003';
}
Expand Down

0 comments on commit 9cbc585

Please sign in to comment.