feat: update address working

This commit is contained in:
Pablo Moreno
2025-01-19 03:10:34 +01:00
parent f9e57c2339
commit b48f84c337
4 changed files with 39 additions and 4 deletions
+2 -1
View File
@@ -9,7 +9,7 @@ from web.views.components import (
list_products,
list_wishlisted_products,
wishlist_button,
user_info_component,
user_info_component, update_customer_address,
)
from web.views.users import (
login,
@@ -96,6 +96,7 @@ urlpatterns = [
delete_from_wishlist,
name="delete_from_wishlist",
),
path("web/customer-address/<int:pk>/", update_customer_address, name="update_customer_address"),
# manifest
path("manifest.json", manifest, name="manifest_json"),
]