authentik.brands.apps

authentik brands app

 1"""authentik brands app"""
 2
 3from authentik.blueprints.apps import ManagedAppConfig
 4
 5
 6class AuthentikBrandsConfig(ManagedAppConfig):
 7    """authentik Brand app"""
 8
 9    name = "authentik.brands"
10    label = "authentik_brands"
11    verbose_name = "authentik Brands"
12    default = True
13    mountpoints = {
14        "authentik.brands.urls_root": "",
15    }
16    default = True
class AuthentikBrandsConfig(authentik.blueprints.apps.ManagedAppConfig):
 7class AuthentikBrandsConfig(ManagedAppConfig):
 8    """authentik Brand app"""
 9
10    name = "authentik.brands"
11    label = "authentik_brands"
12    verbose_name = "authentik Brands"
13    default = True
14    mountpoints = {
15        "authentik.brands.urls_root": "",
16    }
17    default = True

authentik Brand app

name = 'authentik.brands'
label = 'authentik_brands'
verbose_name = 'authentik Brands'
default = True
mountpoints = {'authentik.brands.urls_root': ''}