diff --git a/src/user/user.controller.ts b/src/user/user.controller.ts index b0cbf47..5b13547 100644 --- a/src/user/user.controller.ts +++ b/src/user/user.controller.ts @@ -298,6 +298,8 @@ export class UserController { */ @ApiOperation({ operationId: 'updatePassword' }) @HttpCode(HttpStatus.NO_CONTENT) + @UseInterceptors(UnsetCacheInterceptor) + @CacheKey('/users/:userId') @Post(':userId/@updatePassword') async updatePassword( @Param('userId') userId: string,