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 = [
|
|
|
|
|
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-28 15:04:51 +01:00
|
|
|
path("oidc/", include("oauth2_authcodeflow.urls")),
|
2024-06-24 21:16:48 +01:00
|
|
|
]
|