chore: contact us module

This commit is contained in:
Matin
2025-02-04 11:41:15 +03:30
parent 957178261e
commit c12e0fb4d4
11 changed files with 259 additions and 1 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ export class AuthController {
@AuthGuards()
@ApiOperation({ summary: "Update user password" })
@HttpCode(HttpStatus.OK)
@Patch("password")
@Patch("change-password")
updatePassword(@UserDec() user: User, @Body() updatePasswordDto: UpdatePasswordDto) {
return this.authService.updatePassword(user.id, updatePasswordDto);
}