reinheit/config/urls.py

12 lines
469 B
Python
Raw Normal View History

2024-06-28 19:53:08 +01:00
from django.views.generic.base import RedirectView
2024-06-24 22:13:32 +01:00
from django.urls import path, include
2024-06-24 21:16:48 +01:00
from django.contrib import admin
urlpatterns = [
2024-06-28 19:53:08 +01:00
path("", RedirectView.as_view(url="/brews/")),
2024-06-24 21:16:48 +01:00
path("admin/", admin.site.urls),
2024-06-25 20:59:37 +01:00
path("brews/", include(("reinheit.apps.brew.urls", "brew"), namespace="brews")),
2024-06-30 12:57:29 +01:00
path("shopping/", include(("reinheit.apps.shopping.urls", "shopping"), namespace="shopping")),
2024-06-28 15:04:51 +01:00
path("oidc/", include("oauth2_authcodeflow.urls")),
2024-06-24 21:16:48 +01:00
]