#40 feat: add catalogue images CRUD and display in product catalog

This commit is contained in:
mono
2026-06-13 16:32:44 -05:00
parent 78dfea8714
commit a2ab4fceb7
7 changed files with 425 additions and 3 deletions

View File

@@ -82,6 +82,22 @@ class Api {
getCurrentUser() {
return this.apiImplementation.getCurrentUser();
}
getCatalogueImages() {
return this.apiImplementation.getCatalogueImages();
}
createCatalogueImage(data) {
return this.apiImplementation.createCatalogueImage(data);
}
updateCatalogueImage(id, data) {
return this.apiImplementation.updateCatalogueImage(id, data);
}
deleteCatalogueImage(id) {
return this.apiImplementation.deleteCatalogueImage(id);
}
}
export default Api;