From a22d68bc691f522ed817645a7b9eb6ef3ebbf4e1 Mon Sep 17 00:00:00 2001 From: alexjmpb Date: Tue, 6 Feb 2024 09:20:32 -0500 Subject: [PATCH] feat: adding apps.py to ccx app --- lms/djangoapps/ccx/apps.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lms/djangoapps/ccx/apps.py diff --git a/lms/djangoapps/ccx/apps.py b/lms/djangoapps/ccx/apps.py new file mode 100644 index 000000000000..5dcb1a615aab --- /dev/null +++ b/lms/djangoapps/ccx/apps.py @@ -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