From 21cc4e5d718de77badcbc471b177e24bc02f7542 Mon Sep 17 00:00:00 2001 From: Conut-1 <1mim1@naver.com> Date: Tue, 10 Sep 2024 21:05:36 +0900 Subject: [PATCH] =?UTF-8?q?remove:=20=EB=B6=8E=ED=95=84=EC=9A=94=ED=95=9C?= =?UTF-8?q?=20=ED=8C=8C=EC=9D=BC=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nestjs-BE/server/src/users/dto/update-user.dto.ts | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 nestjs-BE/server/src/users/dto/update-user.dto.ts diff --git a/nestjs-BE/server/src/users/dto/update-user.dto.ts b/nestjs-BE/server/src/users/dto/update-user.dto.ts deleted file mode 100644 index fc59078e..00000000 --- a/nestjs-BE/server/src/users/dto/update-user.dto.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { PartialType } from '@nestjs/mapped-types'; -import { CreateUserDto } from './create-user.dto'; -import { ApiProperty } from '@nestjs/swagger'; - -export class UpdateUserDto extends PartialType(CreateUserDto) { - @ApiProperty({ - example: 'newpassword', - description: 'The new password of the user', - }) - password?: string; - uuid?: string; -}