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

@@ -23,7 +23,7 @@ let UsersController = class UsersController {
}
async changePassword(req, dto) {
console.log("dd");
return await this.userService.changePassword(req.user.userId, dto);
return await this.userService.changePassword(2, dto);
}
};
exports.UsersController = UsersController;