
* *: deduplicate boilerplate for importing related models Signed-off-by: Jens Langhammer <jens@goauthentik.io> * also auto-import .checks Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix error during prometheus metrics from #8435 Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
13 lines
314 B
Python
13 lines
314 B
Python
"""authentik Proxy app"""
|
|
|
|
from authentik.blueprints.apps import ManagedAppConfig
|
|
|
|
|
|
class AuthentikProviderProxyConfig(ManagedAppConfig):
|
|
"""authentik proxy app"""
|
|
|
|
name = "authentik.providers.proxy"
|
|
label = "authentik_providers_proxy"
|
|
verbose_name = "authentik Providers.Proxy"
|
|
default = True
|