Files
edx-platform/common/djangoapps/entitlements/apps.py
2019-12-30 12:25:38 -05:00

23 lines
449 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