mirror of
https://github.com/goauthentik/authentik
synced 2026-05-13 02:16:30 +02:00
12 lines
262 B
Python
12 lines
262 B
Python
"""passbook flows app config"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class PassbookFlowsConfig(AppConfig):
|
|
"""passbook flows app config"""
|
|
|
|
name = "passbook.flows"
|
|
label = "passbook_flows"
|
|
mountpoint = "flows/"
|
|
verbose_name = "passbook Flows"
|