(@Param('id') id: string, @Body() updateUserDto: UpdateUserDto)
| 32 | |
| 33 | @Patch(':id') |
| 34 | update(@Param('id') id: string, @Body() updateUserDto: UpdateUserDto) { |
| 35 | return this.usersService.update(+id, updateUserDto); |
| 36 | } |
| 37 | |
| 38 | @Delete(':id') |
| 39 | remove(@Param('id') id: string) { |