Skip to content

Commit

Permalink
#2125 Changed LTI config URLS to use https address instead of http ad…
Browse files Browse the repository at this point in the history
…dress.
  • Loading branch information
FrenjaminBanklin committed Mar 8, 2024
1 parent 8e8938f commit 5ee82f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions packages/app/obojobo-express/server/views/lti_config_xml.ejs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<cartridge_basiclti_link
xmlns="http://www.imsglobal.org/xsd/imslticc_v1p0"
xmlns:blti="http://www.imsglobal.org/xsd/imsbasiclti_v1p0"
xmlns:lticm="http://www.imsglobal.org/xsd/imslticm_v1p0"
xmlns:lticp="http://www.imsglobal.org/xsd/imslticp_v1p0"
xmlns="https://www.imsglobal.org/xsd/imslticc_v1p0"
xmlns:blti="https://www.imsglobal.org/xsd/imsbasiclti_v1p0"
xmlns:lticm="https://www.imsglobal.org/xsd/imslticm_v1p0"
xmlns:lticp="https://www.imsglobal.org/xsd/imslticp_v1p0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.imsglobal.org/xsd/imslticc_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imslticc_v1p0.xsd http://www.imsglobal.org/xsd/imsbasiclti_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imsbasiclti_v1p0p1.xsd http://www.imsglobal.org/xsd/imslticm_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imslticm_v1p0.xsd http://www.imsglobal.org/xsd/imslticp_v1p0 http://www.imsglobal.org/xsd/lti/ltiv1p0/imslticp_v1p0.xsd">
xsi:schemaLocation="https://www.imsglobal.org/xsd/imslticc_v1p0 https://www.imsglobal.org/xsd/lti/ltiv1p0/imslticc_v1p0.xsd https://www.imsglobal.org/xsd/imsbasiclti_v1p0 https://www.imsglobal.org/xsd/lti/ltiv1p0/imsbasiclti_v1p0p1.xsd https://www.imsglobal.org/xsd/imslticm_v1p0 https://www.imsglobal.org/xsd/lti/ltiv1p0/imslticm_v1p0.xsd https://www.imsglobal.org/xsd/imslticp_v1p0 https://www.imsglobal.org/xsd/lti/ltiv1p0/imslticp_v1p0.xsd">

<blti:title><%= title %></blti:title>
<blti:description><%= description %></blti:description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ const verifyScorePassback = (headers, body, originalUrl, baseUrl) => {

const createPassbackResult = ({ success, messageId, messageRefId }) => {
return `<?xml version="1.0" encoding="UTF-8"?>
<imsx_POXEnvelopeResponse xmlns = "http://www.imsglobal.org/services/ltiv1p1/xsd/imsoms_v1p0">
<imsx_POXEnvelopeResponse xmlns = "https://www.imsglobal.org/services/ltiv1p1/xsd/imsoms_v1p0">
<imsx_POXHeader>
<imsx_POXResponseHeaderInfo>
<imsx_version>V1.0</imsx_version>
Expand Down

0 comments on commit 5ee82f1

Please sign in to comment.