You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4 lines
222 B
4 lines
222 B
9 months ago
|
@Patch('data/edit/:id')
|
||
|
updateProduct (@Param('id') id: number, @Body('name') name: string, @Body('sku') sku: string, @Body('price') price: number) {
|
||
|
return this.csvService.editData(id, name, sku, price);
|
||
|
}
|