Skip to content

Commit

Permalink
resolves CVS-797
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaney committed Dec 16, 2024
1 parent aa06288 commit a8e3d16
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Checkout Repo
Expand All @@ -32,7 +32,7 @@ jobs:

needs: build

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Checkout Repo
Expand Down
4 changes: 3 additions & 1 deletion includes/uw-global/content_migrations.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
'use strict';

var zoom_info = '<strong>Zoom meeting access:</strong> When copying all content from a Canvas course, calendar events for Zoom meetings scheduled using the Zoom app in Canvas are also copied. To prevent students from accessing previous Zoom meeting links you can:<ul style="margin: 0 0 6px 60px"><li>Delete individual calendar events containing previous Zoom meeting links, or</li><li>Select <a href="https://community.canvaslms.com/t5/Instructor-Guide/How-do-I-select-specific-content-as-part-of-a-course-import/ta-p/1091" target="_blank">specific content to copy</a>, and exclude all calendar events from being copied</li></ul>',
panopto_info = '<p><strong>Panopto archived recordings:</strong> Before copying your course in Canvas and Panopto, <a href="https://itconnect.uw.edu/tools-services-support/teaching-learning/panopto/copy-recordings/" target="_blank">make sure that you do not have any archived recordings</a> associated with that course in Panopto. Archived Recordings will NOT copy.</p>';
panopto_info = '<p><strong>Panopto archived recordings:</strong> Before copying your course in Canvas and Panopto, <a href="https://itconnect.uw.edu/tools-services-support/teaching-learning/panopto/copy-recordings/" target="_blank">make sure that you do not have any archived recordings</a> associated with that course in Panopto. Archived Recordings will NOT copy.</p>',
quiz_info = '<p><strong>Quizzes/Question Banks:</strong> Re-importing a Quiz will overwrite first version, discard changes, and delete student submissions. Re-importing a Question Bank will overwrite and discard any changes since the first import.</p>';

// Custom text for migrating course content
$('#content').whenExists(function () {
$('#content').prepend(quiz_info);
$('#content').prepend(panopto_info);
$('#content').prepend(zoom_info);
});
Expand Down

0 comments on commit a8e3d16

Please sign in to comment.