Skip to content

Commit

Permalink
Merge pull request #126 from BudgetBuddiesTeam/fix/#125
Browse files Browse the repository at this point in the history
[fix] UserController URL 에러 fix
  • Loading branch information
wnd01jun authored Aug 16, 2024
2 parents 782b53a + a3e1577 commit 7c9f9a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public ApiResponse<UserDto.ResponseUserDto> registerUser(@RequestBody UserDto.Re
return ApiResponse.onSuccess(userService.saveUser(dto));
}

@GetMapping("/find/{userid}")
@GetMapping("/find/{userId}")
public ApiResponse<UserDto.ResponseUserDto> findOne(@PathVariable("userId") @ExistUser Long userId) {
return ApiResponse.onSuccess(userService.findUser(userId));
}
Expand Down

0 comments on commit 7c9f9a6

Please sign in to comment.