This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-05-07 18:51:06 +00:00
|
|
|
"""passbook policies app config"""
|
2020-05-24 00:06:54 +00:00
|
|
|
from importlib import import_module
|
|
|
|
|
2020-05-07 18:51:06 +00:00
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
|
|
|
|
|
|
class PassbookPoliciesConfig(AppConfig):
|
|
|
|
"""passbook policies app config"""
|
|
|
|
|
|
|
|
name = "passbook.policies"
|
|
|
|
label = "passbook_policies"
|
|
|
|
verbose_name = "passbook Policies"
|
2020-05-24 00:06:54 +00:00
|
|
|
|
|
|
|
def ready(self):
|
|
|
|
"""Load source_types from config file"""
|
|
|
|
import_module("passbook.policies.signals")
|