Initial commit

This commit is contained in:
ThePetrovich 2026-08-17 22:50:10 +08:00
commit 5cda7bc309
28 changed files with 1173 additions and 0 deletions

18
yksa_kit/urls.py Normal file
View file

@ -0,0 +1,18 @@
"""The routes every service shares. Include unprefixed from the project urlconf:
path("", include("yksa_kit.urls")),
URL names are unprefixed too (``health-check``, ``timezone-preferences``,
``privacy-policy``, ``cookie-policy``) because the shared chrome reverses them.
"""
from django.urls import path
from . import views
urlpatterns = [
path("health/", views.health_check, name="health-check"),
path("preferences/timezone/", views.timezone_preferences, name="timezone-preferences"),
path("privacy/", views.privacy_policy, name="privacy-policy"),
path("cookies/", views.cookie_policy, name="cookie-policy"),
]