lms.djangoapps.lti_provider.management.commands package#
Submodules#
lms.djangoapps.lti_provider.management.commands.resend_lti_scores module#
Management command to resend all lti scores for the requested course.
- class lms.djangoapps.lti_provider.management.commands.resend_lti_scores.Command(stdout=None, stderr=None, no_color=False, force_color=False)#
Bases:
BaseCommandSend all lti scores for the requested courses to the registered consumers.
If no arguments are provided, send all scores for all courses.
Examples
./manage.py lms resend_lti_scores ./manage.py lms resend_lti_scores course-v1:edX+DemoX+Demo_Course course-v1:UBCx+course+2016-01
- add_arguments(parser)#
Entry point for subclassed commands to add custom arguments.
- handle(*args, **options)#
The actual logic of the command. Subclasses must implement this method.
- help = '\nSend all lti scores for the requested courses to the registered consumers.\n\nIf no arguments are provided, send all scores for all courses.\n\nExamples:\n\n ./manage.py lms resend_lti_scores\n ./manage.py lms resend_lti_scores course-v1:edX+DemoX+Demo_Course course-v1:UBCx+course+2016-01\n\n'#