Skip to content
Snippets Groups Projects
Commit e6c6b887 authored by Lukáš Kratochvíl's avatar Lukáš Kratochvíl
Browse files

fix: enabled categories Patch and Delete methods

parent 16bad3d0
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ export class CategoriesController {
async findOne(@Param('id') id: string) {
return await this.categoriesService.findOne(id);
}
/*
@Patch(':id')
update(@Param('id') id: string, @Body() updateCategoryDto: UpdateCategoryDto) {
return this.categoriesService.update(id, updateCategoryDto);
......@@ -39,5 +39,4 @@ export class CategoriesController {
remove(@Param('id') id: string) {
return this.categoriesService.remove(id);
}
*/
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment