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.
authentik/passbook/outposts/apps.py

17 lines
391 B
Python
Raw Normal View History

2020-09-02 22:04:12 +00:00
"""passbook outposts app config"""
from importlib import import_module
from django.apps import AppConfig
class PassbookOutpostConfig(AppConfig):
"""passbook outposts app config"""
name = "passbook.outposts"
label = "passbook_outposts"
mountpoint = "outposts/"
verbose_name = "passbook Outpost"
def ready(self):
import_module("passbook.outposts.signals")