Added credit as an option to change_enrollment command

This commit is contained in:
Albert St. Aubin
2018-05-21 13:14:14 -04:00
parent bac2ada0ed
commit 1b72974fb8

View File

@@ -41,7 +41,7 @@ class Command(BaseCommand):
$ ... change_enrollment -u joe,frank,bill -c some/course/id --from audit --to honor -n
"""
enrollment_modes = ('audit', 'verified', 'honor')
enrollment_modes = ('audit', 'verified', 'honor', 'credit')
def add_arguments(self, parser):
parser.add_argument('-f', '--from',