fc1caf1469
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
9 lines
179 B
Python
9 lines
179 B
Python
"""authentik api urls"""
|
|
from django.urls import include, path
|
|
|
|
from authentik.api.v2.urls import urlpatterns as v2_urls
|
|
|
|
urlpatterns = [
|
|
path("v2beta/", include(v2_urls)),
|
|
]
|