Skip to content

Latest commit

 

History

History
24 lines (22 loc) · 1.11 KB

File metadata and controls

24 lines (22 loc) · 1.11 KB

TODO: Personalized Recommendations (feat/recommendations)

  • 1. Created branch feat/recommendations ✅
  • 2. Created migration 003_product_views.sql ✅
  • 3. Ran migration ✅
  • 4. Updated backend/src/routes/products.js (add view tracking) ✅
  • 5. Created backend/src/routes/recommendations.js (new endpoint) ✅
  • 6. Updated backend/src/routes/index.js (mount route) ✅
  • 7. Updated frontend/src/api/client.js (add getRecommendations) ✅
  • 8. Updated frontend/src/pages/Marketplace.jsx (UI section) ✅
  • 9. Tested endpoints ✅
  • 10. Committed changes ✅

SEP-0007 Payment Links Progress

Plan Steps:

  • 1. Create Git branch feat/sep0007-payment-links
  • 2. Add generatePaymentLink() to backend/src/utils/stellar.js
  • 3. Add GET /api/orders/:id/payment-link route in backend/src/routes/orders.js
  • 4. Add getOrderPaymentLink(id) to frontend/src/api/client.js
  • 5. Update frontend/src/pages/ProductDetail.jsx with payment link UI + QR modal
  • 6. Install qrcode.react in frontend
  • 7. Add tests
  • 8. Test end-to-end
  • 9. Commit & PR