0027dbc0e5
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
9 lines
175 B
Python
9 lines
175 B
Python
"""authentik api urls"""
|
|
from django.urls import include, path
|
|
|
|
from authentik.api.v3.urls import urlpatterns as v3_urls
|
|
|
|
urlpatterns = [
|
|
path("v3/", include(v3_urls)),
|
|
]
|