Skip to content

Commit 45a2e95

Browse files
Update let to const for the objects passed back in the CIM plugins
1 parent ac8b591 commit 45a2e95

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/remote-plugins/courseimport-cim.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ module.exports = function (appContext, directory) {
6161
]
6262
};
6363

64-
let responseObject = {
64+
const responseObject = {
6565
lti_message_type: 'ContentItemSelection',
6666
lti_version: 'LTI-1p0',
6767
content_items: JSON.stringify(contentItems),

src/remote-plugins/isf-cim.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ module.exports = function (appContext, directory) {
6464
]
6565
};
6666

67-
let responseObject = {
67+
const responseObject = {
6868
lti_message_type: 'ContentItemSelection',
6969
lti_version: 'LTI-1p0',
7070
content_items: JSON.stringify(contentItems),

src/remote-plugins/quicklink-cim.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ module.exports = function (appContext, directory) {
6363
]
6464
};
6565

66-
let responseObject = {
66+
const responseObject = {
6767
lti_message_type: 'ContentItemSelection',
6868
lti_version: 'LTI-1p0',
6969
content_items: JSON.stringify(contentItems),

0 commit comments

Comments
 (0)