Files
edx-platform/common/djangoapps/entitlements/apps.py
2019-03-25 10:28:30 -04:00

22 lines
448 B
Python

"""
Entitlements Application Configuration
Signal handlers are connected here.
"""
from django.apps import AppConfig
class EntitlementsConfig(AppConfig):
"""
Application Configuration for Entitlements.
"""
name = u'entitlements'
def ready(self):
"""
Connect handlers to signals.
"""
from . import signals # pylint: disable=unused-variable
from .tasks import expire_old_entitlements