Commit 4b95abb7 by John Eskew

Make an AppConfig to register ccxcon signals.

parent 040f5cc9
...@@ -6,4 +6,5 @@ that is used to interact with the CCX and their master courses. ...@@ -6,4 +6,5 @@ that is used to interact with the CCX and their master courses.
The ccxcon app needs to be placed in `openedx.core.djangoapps` The ccxcon app needs to be placed in `openedx.core.djangoapps`
because it will be used both in CMS and LMS. because it will be used both in CMS and LMS.
""" """
import openedx.core.djangoapps.ccxcon.signals
default_app_config = 'openedx.core.djangoapps.ccxcon.apps.CCXConnectorConfig'
"""
Configuration for CCX connector
"""
from django.apps import AppConfig
class CCXConnectorConfig(AppConfig):
name = 'openedx.core.djangoapps.ccxcon'
verbose_name = "CCX Connector"
def ready(self):
import openedx.core.djangoapps.ccxcon.signals
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment