Skip to content

Commit

Permalink
✨ feat: 배포 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
xxoznge committed May 22, 2024
1 parent 4fffc07 commit ca6c8a5
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ public ApiResponse<JwtDto> reissueToken(@RequestHeader("RefreshToken") String re
return ApiResponse.onSuccess(jwtUtil.reissueToken(refreshToken));
}

@GetMapping("/test")
@GetMapping("/health")
public String healthCheck() {
return "test";
}

public ApiResponse<String> test(@UserResolver User user) {
return ApiResponse.onSuccess(user.getUsername());
}
Expand Down

0 comments on commit ca6c8a5

Please sign in to comment.