#40 feat: add catalogue images CRUD and display in product catalog
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user