Skip to content

Commit

Permalink
[BE] ♻️ : swagger 수정(github action test) (#119)
Browse files Browse the repository at this point in the history
* swagger 설정

* ♻️ swagger 수정
  • Loading branch information
twoo1999 authored Nov 25, 2023
1 parent 76396d4 commit f77108f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
9 changes: 4 additions & 5 deletions BE/musicspot/src/journey/controller/journey.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ export class JourneyController {
constructor(private journeyService: JourneyService) {}

@ApiOperation({
summary: '여정 시작을 눌렀을 시 실행되는 API',
description:
'request로 여정 제목, 위치좌표(number[], 2개), 시작 시간, 유저 이메일을 필요합니다.',
summary: '여정 시작 API',
description: '여정 기록을 시작합니다..',
})
@ApiCreatedResponse({
description: '생성된 여정 데이터를 반환',
Expand All @@ -25,8 +24,8 @@ export class JourneyController {
return await this.journeyService.create(startJourneyDTO);
}
@ApiOperation({
summary: '여정 종료를 눌렀을 시 실행되는 API',
description: 'request로 id값이 필요합니다',
summary: '여정 종료 API',
description: '여정을 종료합니다.',
})
@ApiCreatedResponse({
description: '현재는 좌표 데이터의 길이를 반환, 추후 참 거짓으로 변경 예정',
Expand Down
5 changes: 2 additions & 3 deletions BE/musicspot/src/spot/controller/spot.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 데이터를 반환',
Expand Down

0 comments on commit f77108f

Please sign in to comment.