summaryrefslogtreecommitdiff
path: root/kitchen/urls.py
diff options
context:
space:
mode:
authorCaine <caine@jihakuz.xyz>2026-04-02 16:50:56 +0100
committerCaine <caine@jihakuz.xyz>2026-04-02 16:50:56 +0100
commit27f91fb877f4502804c932a28546ab6c745cc103 (patch)
treecd13b07daf2e27e5ef8778b4637f35ea7b11a29f /kitchen/urls.py
parentda6cd28c3a8b4830fba3e1232e97cb2ae141ed2e (diff)
Phase 2+3: bulk pantry add, smart shopping list, recipe URL import
Diffstat (limited to 'kitchen/urls.py')
-rw-r--r--kitchen/urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/kitchen/urls.py b/kitchen/urls.py
index 7dedb7a..2eabc81 100644
--- a/kitchen/urls.py
+++ b/kitchen/urls.py
@@ -19,4 +19,7 @@ urlpatterns = [
path("", include(router.urls)),
path("what-can-i-cook/", views.what_can_i_cook, name="what-can-i-cook"),
path("log-cook/", views.log_cook, name="log-cook"),
+ path("bulk-pantry-add/", views.bulk_pantry_add, name="bulk-pantry-add"),
+ path("generate-shopping-list/", views.generate_shopping_list, name="generate-shopping-list"),
+ path("import-recipe/", views.import_recipe_url, name="import-recipe"),
]