4671d4afb4
* enterprise: add enterprise license and app Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add license and terms Signed-off-by: Jens Langhammer <jens@goauthentik.io> * don't build enterprise into docker for now Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
12 lines
299 B
Python
12 lines
299 B
Python
"""Enterprise app config"""
|
|
from authentik.blueprints.apps import ManagedAppConfig
|
|
|
|
|
|
class AuthentikEnterpriseConfig(ManagedAppConfig):
|
|
"""Enterprise app config"""
|
|
|
|
name = "authentik.enterprise"
|
|
label = "authentik_enterprise"
|
|
verbose_name = "authentik Enterprise"
|
|
default = True
|