Handles exam related events from the event bus that impact credit state. Functionally this will behave the same as the existing CreditService which is called by edx-proctoring. This enables edx-exams (an IDA) to have the same behavior.
22 lines
617 B
Python
22 lines
617 B
Python
"""
|
|
Credit Application Configuration
|
|
"""
|
|
|
|
|
|
from django.apps import AppConfig
|
|
from django.conf import settings
|
|
from edx_proctoring.runtime import set_runtime_service
|
|
|
|
|
|
class CreditConfig(AppConfig):
|
|
"""
|
|
Default configuration for the "openedx.core.djangoapps.credit" Django application.
|
|
"""
|
|
name = 'openedx.core.djangoapps.credit'
|
|
|
|
def ready(self):
|
|
from .signals import handlers # lint-amnesty, pylint: disable=unused-import
|
|
if settings.FEATURES.get('ENABLE_SPECIAL_EXAMS'):
|
|
from .services import CreditService
|
|
set_runtime_service('credit', CreditService())
|