kumidc/kumidc/urls.py
2022-08-04 14:11:55 +02:00

13 lines
495 B
Python

from django.contrib import admin
from django.urls import path, re_path, include, reverse_lazy
from django.views.generic import RedirectView
urlpatterns = [
path('admin/login/', RedirectView.as_view(url=reverse_lazy("auth:login", query_string=True))),
path('admin/', admin.site.urls),
re_path(r'^openid/', include('oidc_provider.urls', namespace='oidc_provider')),
path('auth/', include(("authentication.urls", "auth"))),
path('', include(("frontend.urls", "frontend"))),
]