feat: making lms.djangoapps.ccx AppConfig ready. (#34220)
This commit is contained in:
committed by
GitHub
parent
45178e0ced
commit
e7f02fea2e
18
lms/djangoapps/ccx/apps.py
Normal file
18
lms/djangoapps/ccx/apps.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""
|
||||
LMS CCX application configuration
|
||||
Signal handlers are connected here.
|
||||
"""
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class CCXConfig(AppConfig):
|
||||
"""
|
||||
Application Configuration for CCX.
|
||||
"""
|
||||
name = 'lms.djangoapps.ccx'
|
||||
|
||||
def ready(self):
|
||||
"""
|
||||
Connect signal handlers.
|
||||
"""
|
||||
from . import tasks # pylint: disable=unused-import
|
||||
Reference in New Issue
Block a user