trebol-ecommerce / trebol-backend-monolith

Monolithic eCommerce backend web application that exposes a RESTful API.
MIT License
16 stars 21 forks source link

[API v1.1] Implement CRUD for Product Categories #65

Closed bglamadrid closed 2 years ago

bglamadrid commented 3 years ago

Product categories now have a complete CRUD specification. It must be implemented all in one path: /data/product_categories, following convention like in #64 This also means deprecating the existing /data/products_categories/{parentId} mapping too.

Fortunately most of the job is already done; there is a fully-fledged ProductCategoriesJpaServiceImpl service written already.

Also the application.properties must be updated with the correct CORS mappings, and security rules applied in SecurityConfig class.