
* 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>
10 lines
219 B
Python
10 lines
219 B
Python
"""authentik brand root URLs"""
|
|
|
|
from django.urls import path
|
|
|
|
from authentik.brands.views.webfinger import WebFingerView
|
|
|
|
urlpatterns = [
|
|
path(".well-known/webfinger", WebFingerView.as_view(), name="webfinger"),
|
|
]
|