This commit is contained in:
2025-07-17 17:22:10 +09:00
parent 8135650344
commit bf8c75f770
12 changed files with 37 additions and 11 deletions

View File

@@ -9,6 +9,7 @@ export class UsersController {
@Patch('password')
async changePassword(@Request() req, @Body() dto: ChangePasswordDto) {
console.log("dd");
return await this.userService.changePassword(req.user.userId, dto);
await this.userService.changePassword(req.user.userId, dto);
return
}
}