Skip to content

Commit

Permalink
feat/#41/dto파일명 kebab-case로 재변경
Browse files Browse the repository at this point in the history
  • Loading branch information
JeonHeena committed Dec 18, 2024
1 parent 4998890 commit edd259b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/items/items.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
HttpCode,
} from '@nestjs/common';
import { ItemsService } from './items.service';
import { ItemChangeStatusDto, BuyItemDto } from './dto/itemChangeStatus.dto';
import { ItemChangeStatusDto, BuyItemDto } from './dto/change-item-status.dto';
import { ApiTags } from '@nestjs/swagger';
import { ApiItems } from './items.swagger';

Expand Down
2 changes: 1 addition & 1 deletion src/items/items.swagger.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { applyDecorators } from '@nestjs/common';
import { ApiOperation, ApiResponse, ApiBody } from '@nestjs/swagger';
import { ItemChangeStatusDto, BuyItemDto } from './dto/itemChangeStatus.dto';
import { ItemChangeStatusDto, BuyItemDto } from './dto/change-item-status.dto';

export const ApiItems = {
getAllItems: () => {
Expand Down

0 comments on commit edd259b

Please sign in to comment.