diff options
author | Aleš Smodiš <aless@guru.si> | 2015-11-09 11:34:16 +0100 |
---|---|---|
committer | Aleš Smodiš <aless@guru.si> | 2015-11-09 11:34:16 +0100 |
commit | 15b7e07218fffe571e68efe755983b246a1ab8b1 (patch) | |
tree | 4b995bec5142cb05deeebe0755e2a401cd6ac419 /web | |
parent | 81a761ae7e8bb95567c9ad47a20bfcf1b3073593 (diff) |
Change all remaining "Shibboleth.sso" paths to "saml".
Diffstat (limited to 'web')
-rw-r--r-- | web/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/main.js b/web/main.js index c0896b8..799ba3d 100644 --- a/web/main.js +++ b/web/main.js @@ -10,7 +10,7 @@ var engine = require('engine.io'), // web sockets communication handler, sitting express = require('express'), // library providing the Express web framework http_app = express(); // web framework engine, sitting on the low-level HTTP handler -var SAML_SERVICE_URL = process.env.CODEQ_SAML_SERVICE_URL || 'https://codeq.si/Shibboleth.sso/'; +var SAML_SERVICE_URL = process.env.CODEQ_SAML_SERVICE_URL || 'https://codeq.si/saml/'; var samlUrlParsed = url.parse(SAML_SERVICE_URL), samlIsHttps = samlUrlParsed.protocol === 'https:'; |