From 36b300d83e3ef0d349a6cc0c91cf5a64c19e3f11 Mon Sep 17 00:00:00 2001 From: eeseung Date: Fri, 10 Jan 2025 17:32:56 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EC=9D=98=EA=B3=BC=20=EC=95=BD=ED=92=88?= =?UTF-8?q?=20=EB=8C=80=EB=B6=84=EB=A5=98=20=EC=82=AD=EC=A0=9C=20API=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../medicine-categories.controller.ts | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/backend/src/m/medicine-categories/medicine-categories.controller.ts b/backend/src/m/medicine-categories/medicine-categories.controller.ts index 83cc8d2..7c5ba39 100644 --- a/backend/src/m/medicine-categories/medicine-categories.controller.ts +++ b/backend/src/m/medicine-categories/medicine-categories.controller.ts @@ -71,21 +71,6 @@ export class MMedicineCategoriesController { ); } - @Delete('main-category') - @ApiOperation({ - summary: '약품 대분류 삭제', - }) - @ApiResponse({ - status: HttpStatus.BAD_REQUEST, - description: '삭제되지 않은 소분류가 존재합니다.', - }) - @ApiResponse({ - status: HttpStatus.NOT_FOUND, - }) - async deleteMedicineMainCategory(@Query('category') category: string) { - return this.medicineCategoriesService.deleteMainCategory(category); - } - @Patch('sub-category/:categoryId') @ApiOperation({ summary: '약품 소분류 수정',