10 lines
370 B
Python
10 lines
370 B
Python
from django.views.generic.base import RedirectView
|
|
from django.urls import path, include
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = [
|
|
path("", RedirectView.as_view(url="/brews/")),
|
|
path("admin/", admin.site.urls),
|
|
path("brews/", include(("reinheit.apps.brew.urls", "brew"), namespace="brews")),
|
|
path("oidc/", include("oauth2_authcodeflow.urls")),
|
|
]
|