Skip to content

Commit

Permalink
feat: adding apps.py to ccx app
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjmpb committed Feb 6, 2024
1 parent 7e93ad0 commit a22d68b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lms/djangoapps/ccx/apps.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a22d68b

Please sign in to comment.