From 499889001467be722044e91dd534ed1f4860b94f Mon Sep 17 00:00:00 2001 From: JeonHeena Date: Wed, 18 Dec 2024 14:46:59 +0900 Subject: [PATCH] =?UTF-8?q?feat/#41/dto=ED=8C=8C=EC=9D=BC=EB=AA=85=20ts?= =?UTF-8?q?=EC=BB=A8=EB=B2=A4=EC=85=98=EC=97=90=EB=94=B0=EB=9D=BC=20camelC?= =?UTF-8?q?ase=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dto/{item-changeStatus.dto.ts => itemChangeStatus.dto.ts} | 0 src/items/items.controller.ts | 2 +- src/items/items.swagger.ts | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/items/dto/{item-changeStatus.dto.ts => itemChangeStatus.dto.ts} (100%) diff --git a/src/items/dto/item-changeStatus.dto.ts b/src/items/dto/itemChangeStatus.dto.ts similarity index 100% rename from src/items/dto/item-changeStatus.dto.ts rename to src/items/dto/itemChangeStatus.dto.ts diff --git a/src/items/items.controller.ts b/src/items/items.controller.ts index daf0f7a..4da1ea6 100644 --- a/src/items/items.controller.ts +++ b/src/items/items.controller.ts @@ -8,7 +8,7 @@ import { HttpCode, } from '@nestjs/common'; import { ItemsService } from './items.service'; -import { ItemChangeStatusDto, BuyItemDto } from './dto/item-changeStatus.dto'; +import { ItemChangeStatusDto, BuyItemDto } from './dto/itemChangeStatus.dto'; import { ApiTags } from '@nestjs/swagger'; import { ApiItems } from './items.swagger'; diff --git a/src/items/items.swagger.ts b/src/items/items.swagger.ts index c83a74c..d5ec6e3 100644 --- a/src/items/items.swagger.ts +++ b/src/items/items.swagger.ts @@ -1,6 +1,6 @@ import { applyDecorators } from '@nestjs/common'; import { ApiOperation, ApiResponse, ApiBody } from '@nestjs/swagger'; -import { ItemChangeStatusDto, BuyItemDto } from './dto/item-changeStatus.dto'; +import { ItemChangeStatusDto, BuyItemDto } from './dto/itemChangeStatus.dto'; export const ApiItems = { getAllItems: () => {