diff --git a/server/api-server/src/users/users.controller.ts b/server/api-server/src/users/users.controller.ts index 63c2d00..2893c7f 100644 --- a/server/api-server/src/users/users.controller.ts +++ b/server/api-server/src/users/users.controller.ts @@ -32,15 +32,15 @@ export class UsersController { return { userId: user.userId, nickname: user.nickname }; } - @Get() - findAll() { - return this.usersService.findAll(); - } + // @Get() + // findAll() { + // return this.usersService.findAll(); + // } - @Get(':id') - findOne(@Param('id') id: string) { - return this.usersService.findOne(id); - } + // @Get(':id') + // findOne(@Param('id') id: string) { + // return this.usersService.findOne(id); + // } @UseGuards(LoggedInGuard) @Patch() @@ -49,8 +49,8 @@ export class UsersController { return this.usersService.update(id, updateUserDto); } - @Delete(':id') - remove(@Param('id') id: string) { - return this.usersService.remove(id); - } + // @Delete(':id') + // remove(@Param('id') id: string) { + // return this.usersService.remove(id); + // } }