2 Open Issues Need Help Last updated: Jun 19, 2025

Open Issues Need Help

View All on GitHub
Web Development Web Engineering Project

AI 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.

Complexity: 3/5
good first issue Frontend
Web Development Web Engineering Project

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.

Complexity: 3/5
good first issue Frontend