Open Issues Need Help
View All on GitHubAI Summary: Implement detailed product views for a webshop, accessible via the `/product/:productId` route. This involves creating backend endpoints to add products to a wishlist (`POST /api/wishlist/:wishlistId/item?productId={...}`) and a shopping cart (`POST /api/cart/product/:productId`), likely requiring database interactions and potentially frontend modifications to display the detailed product information.
AI Summary: Implement a REST API endpoint (`GET /api/products?name={name}&minPrice={x}&maxPrice={y}`) for retrieving a list of products based on optional name, minimum price, and maximum price filters. This requires updating the existing Node.js/Express backend, likely involving modifications to controllers, models, and routes to handle the filtering logic and database queries. The provided image in the issue suggests a UI element needing this data.