23 lines
566 B
Python
23 lines
566 B
Python
""" # lint-amnesty, pylint: disable=django-not-configured
|
|
Entitlements Application Configuration
|
|
|
|
Signal handlers are connected here.
|
|
"""
|
|
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class EntitlementsConfig(AppConfig):
|
|
"""
|
|
Application Configuration for Entitlements.
|
|
"""
|
|
name = 'common.djangoapps.entitlements'
|
|
|
|
def ready(self):
|
|
"""
|
|
Connect handlers to signals.
|
|
"""
|
|
from . import signals # pylint: disable=unused-import
|
|
from .tasks import expire_old_entitlements # lint-amnesty, pylint: disable=unused-import
|