MCPcopy
hub / github.com/nestjs/nest / update

Method update

integration/inspector/src/users/users.controller.ts:34–36  ·  view source on GitHub ↗
(@Param('id') id: string, @Body() updateUserDto: UpdateUserDto)

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 2

ParamFunction · 0.90
BodyFunction · 0.90

Tested by

no test coverage detected