Skip to content
Snippets Groups Projects
Commit 8e95d449 authored by jfederico's avatar jfederico
Browse files

bbb-lti: CC descriptor now gives a URL for accessing icon as an asset

parent fb5cb274
No related branches found
No related tags found
No related merge requests found
......@@ -382,8 +382,8 @@ class ToolController {
def lti_endpoint = ltiService.retrieveBasicLtiEndpoint() + '/' + grailsApplication.metadata['app.name']
def launch_url = 'http://' + lti_endpoint + '/tool'
def secure_launch_url = 'https://' + lti_endpoint + '/tool'
def icon = 'http://' + lti_endpoint + '/images/icon.ico'
def secure_icon = 'https://' + lti_endpoint + '/images/icon.ico'
def icon = 'http://' + lti_endpoint + '/assets/icon.ico'
def secure_icon = 'https://' + lti_endpoint + '/assets/icon.ico'
def isSSLEnabled = ltiService.isSSLEnabled('https://' + lti_endpoint + '/tool/test')
def cartridge = '' +
'<?xml version="1.0" encoding="UTF-8"?>' +
......
......@@ -17,7 +17,6 @@
<asset:stylesheet src="application.css"/>
<asset:javascript src="application.js"/>
<g:layoutHead/>
<g:javascript library="application"/>
</head>
<body>
<div id="spinner" class="spinner" style="display:none;">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment