* Add a handler to mark a block complete when a problem is scored.
* Also handle marking incomplete when user problem state is deleted.
* Add score_deleted to published providing_args for PROBLEM_{RAW,WEIGHTED}_SCORE_CHANGED
OC-3089
18 lines
411 B
Python
18 lines
411 B
Python
"""
|
|
App Configuration for Completion
|
|
"""
|
|
|
|
from __future__ import absolute_import, division, print_function, unicode_literals
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CompletionAppConfig(AppConfig):
|
|
"""
|
|
App Configuration for Completion
|
|
"""
|
|
name = 'lms.djangoapps.completion'
|
|
verbose_name = 'Completion'
|
|
|
|
def ready(self):
|
|
from . import handlers # pylint: disable=unused-variable
|