Initial commit
This commit is contained in:
commit
5cda7bc309
28 changed files with 1173 additions and 0 deletions
18
yksa_kit/urls.py
Normal file
18
yksa_kit/urls.py
Normal 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"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue