Skip to content

Commit

Permalink
Merge pull request #65 from PLADI-ALM/feat/PDS-83-getUserPosition
Browse files Browse the repository at this point in the history
[PDS-83/hotfix] 사용자정보 API method 변경
  • Loading branch information
chaerlo127 authored Oct 8, 2023
2 parents 0b3a685 + ce27c6b commit 3243e40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public ResponseCustom<TokenDto> login(@RequestBody @Valid LoginReq loginReq){
@ApiResponse(responseCode = "200", description = "(S0001)사용자 정보 불러오기 성공"),
@ApiResponse(responseCode = "404", description = "(U0001)사용자를 찾을 수 없습니다.", content = @Content(schema = @Schema(implementation = ResponseCustom.class)))
})
@PostMapping("/position")
@GetMapping("/position")
public ResponseCustom<UserPositionRes> getUserPosition(@Account User user){
return ResponseCustom.OK(userService.getUserPosition(user));
}
Expand Down

0 comments on commit 3243e40

Please sign in to comment.