Skip to content

Commit 4682c9a

Browse files
authored
Merge pull request #122 from VRGuild/69-ds-update-entity-column
fix: 멤버 수락 오류 수정
2 parents f224eda + f6c16d2 commit 4682c9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/mtvs/devlinkbackend/member/command/controller/MemberCommandController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public MemberCommandController(MemberService memberService, JwtUtil jwtUtil) {
2626
@ApiResponse(responseCode = "200", description = "팀이 성공적으로 반영되었습니다."),
2727
@ApiResponse(responseCode = "404", description = "팀을 찾을 수 없습니다.")
2828
})
29-
@PatchMapping("/accpet/{memberId}")
29+
@PatchMapping("/accept/{memberId}")
3030
public ResponseEntity<MemberStatusResponseDTO> updateTeam(
3131
@RequestHeader(name = "Authorization") String authorizationHeader,
3232
@PathVariable(name = "memberId") Long memberId) throws Exception {

0 commit comments

Comments
 (0)