21 lines
433 B
Python
21 lines
433 B
Python
"""
|
|
Coursegraph Application Configuration
|
|
|
|
Signal handlers are connected here.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CoursegraphConfig(AppConfig):
|
|
"""
|
|
AppConfig for courseware app
|
|
"""
|
|
name = 'openedx.core.djangoapps.coursegraph'
|
|
|
|
def ready(self):
|
|
"""
|
|
Import signals on startup
|
|
"""
|
|
from openedx.core.djangoapps.coursegraph import signals # pylint: disable=unused-variable
|