
* brands: add OIDC webfinger support for default application Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
15 lines
302 B
Python
15 lines
302 B
Python
"""authentik brands app"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class AuthentikBrandsConfig(AppConfig):
|
|
"""authentik Brand app"""
|
|
|
|
name = "authentik.brands"
|
|
label = "authentik_brands"
|
|
verbose_name = "authentik Brands"
|
|
mountpoints = {
|
|
"authentik.brands.urls_root": "",
|
|
}
|