Skip to content

Commit

Permalink
feat: 의과 약품 대분류 삭제 API 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
eeseung committed Jan 10, 2025
1 parent 2f7022d commit 36b300d
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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: '약품 소분류 수정',
Expand Down

0 comments on commit 36b300d

Please sign in to comment.