feat: making lms.djangoapps.ccx AppConfig ready. (#34220)

This commit is contained in:
Alexander Mendoza
2024-03-20 15:15:52 -05:00
committed by GitHub
parent 45178e0ced
commit e7f02fea2e

View 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