
* *: 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>
15 lines
425 B
Python
15 lines
425 B
Python
"""RAC app config"""
|
|
|
|
from authentik.enterprise.apps import EnterpriseConfig
|
|
|
|
|
|
class AuthentikEnterpriseProviderRAC(EnterpriseConfig):
|
|
"""authentik enterprise rac app config"""
|
|
|
|
name = "authentik.enterprise.providers.rac"
|
|
label = "authentik_providers_rac"
|
|
verbose_name = "authentik Enterprise.Providers.RAC"
|
|
default = True
|
|
mountpoint = ""
|
|
ws_mountpoint = "authentik.enterprise.providers.rac.urls"
|