authentik.brands.urls_root

authentik brand root URLs

1"""authentik brand root URLs"""
2
3from django.urls import path
4
5from authentik.brands.views.webfinger import WebFingerView
6
7urlpatterns = [
8    path(".well-known/webfinger", WebFingerView.as_view(), name="webfinger"),
9]
urlpatterns = [<URLPattern '.well-known/webfinger' [name='webfinger']>]