From f77108f981ee33df579d8d1394a91b972d83eea5 Mon Sep 17 00:00:00 2001 From: twoo1999 Date: Sat, 25 Nov 2023 17:31:49 +0900 Subject: [PATCH] =?UTF-8?q?[BE]=20=E2=99=BB=EF=B8=8F=20:=20swagger=20?= =?UTF-8?q?=EC=88=98=EC=A0=95(github=20action=20test)=20(#119)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * swagger 설정 * :recycle: swagger 수정 --- .../src/journey/controller/journey.controller.ts | 9 ++++----- BE/musicspot/src/spot/controller/spot.controller.ts | 5 ++--- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/BE/musicspot/src/journey/controller/journey.controller.ts b/BE/musicspot/src/journey/controller/journey.controller.ts index ec162d1..51b6297 100644 --- a/BE/musicspot/src/journey/controller/journey.controller.ts +++ b/BE/musicspot/src/journey/controller/journey.controller.ts @@ -12,9 +12,8 @@ export class JourneyController { constructor(private journeyService: JourneyService) {} @ApiOperation({ - summary: '여정 시작을 눌렀을 시 실행되는 API', - description: - 'request로 여정 제목, 위치좌표(number[], 2개), 시작 시간, 유저 이메일을 필요합니다.', + summary: '여정 시작 API', + description: '여정 기록을 시작합니다..', }) @ApiCreatedResponse({ description: '생성된 여정 데이터를 반환', @@ -25,8 +24,8 @@ export class JourneyController { return await this.journeyService.create(startJourneyDTO); } @ApiOperation({ - summary: '여정 종료를 눌렀을 시 실행되는 API', - description: 'request로 id값이 필요합니다', + summary: '여정 종료 API', + description: '여정을 종료합니다.', }) @ApiCreatedResponse({ description: '현재는 좌표 데이터의 길이를 반환, 추후 참 거짓으로 변경 예정', diff --git a/BE/musicspot/src/spot/controller/spot.controller.ts b/BE/musicspot/src/spot/controller/spot.controller.ts index 5513a78..693e0a1 100644 --- a/BE/musicspot/src/spot/controller/spot.controller.ts +++ b/BE/musicspot/src/spot/controller/spot.controller.ts @@ -16,9 +16,8 @@ export class SpotController { constructor(private spotService: SpotService) {} @ApiOperation({ - summary: 'spot 기록 시 실행되는 API', - description: - 'request로 여정 ID(string), 위치좌표([number, number]), timestamp(string), 유저 이메일(string)을 필요합니다.', + summary: 'spot 기록 API', + description: 'spot을 기록합니다.', }) @ApiCreatedResponse({ description: '생성된 spot 데이터를 반환',