Skip to content

Commit

Permalink
feat: 식권 사용 기능 구현 (9oormthon-univ#63)
Browse files Browse the repository at this point in the history
* feat: 장바구니 추가 기능 구현

* feat: 장바구니 조회 기능 구현

* feat: 상품 주문과 식권 사용 기능 구현

* style: 포인트트랜잭션 레포지토리명 변경

* deploy: 재배포

* deploy: 재배포2

* deploy: 로그인 로직 수정에 따른 재배포

* deploy: 로그인 로직 수정에 따른 재배포2

* feat: 식권 사용 기능 구현

* feat: yml 수정 사항 반영
  • Loading branch information
LEEJaeHyeok97 authored Nov 20, 2024
1 parent d11a92d commit 34f96cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public ResponseCustom<Message> order(
}

@Operation(summary = "식권 사용", description = "식권을 사용합니다.")
@PostMapping("/tickets")
public ResponseCustom<Message> useMealTicket(
Authentication authentication,
@PathVariable Long orderId
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public ResponseCustom<Message> registerTeam(
teamService.registerTeam(AuthenticationParser.parseUserId(authentication), registerTeamRequest));
}

@Operation(summary = "팀 가입", description = "비밀 코드를 입력하여, 팀에 가입한다.")
@Operation(summary = "팀 가입", description = "비밀 코드를 입력해 팀에 가입한다.")
@PostMapping("/join/{joinCode}")
public ResponseCustom<Message> joinTeam(
Authentication authentication,
Expand Down

0 comments on commit 34f96cd

Please sign in to comment.