Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openedx/edx-platform
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 53ed09f0c9ee921d74c612b0ee72560cb2a4c22a
Choose a base ref
..
head repository: openedx/edx-platform
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d3fbc1ec276f13cd7509b3ea41769e833d9fa893
Choose a head ref
Showing with 4 additions and 1 deletion.
  1. +4 −1 openedx/core/djangoapps/content_libraries/management/commands/recreate_upstream_links.py
Original file line number Diff line number Diff line change
@@ -27,10 +27,13 @@ class Command(BaseCommand):
# Recreate upstream links for two courses.
$ ./manage.py cms recreate_upstream_links --course course-v1:edX+DemoX.1+2014 \
--course course-v1:edX+DemoX.2+2015
# Force recreate upstream links for one or more courses including processed ones.
$ ./manage.py cms recreate_upstream_links --course course-v1:edX+DemoX.1+2014 \
--course course-v1:edX+DemoX.2+2015 --force
# Recreate upstream links for all courses.
$ ./manage.py cms recreate_upstream_links --all
# Force recreate links for all courses including completely processed ones.
$ ./manage.py cms recreate_upstream_links --all
$ ./manage.py cms recreate_upstream_links --all --force
"""

def add_arguments(self, parser):