16 lines
285 B
Python
16 lines
285 B
Python
"""
|
|
Configuration for CCX connector
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CCXConnectorConfig(AppConfig):
|
|
name = 'openedx.core.djangoapps.ccxcon'
|
|
verbose_name = "CCX Connector"
|
|
|
|
def ready(self):
|
|
from . import signals
|