Skip to content

Commit

Permalink
#18 [Update] 코드 리팩토링
Browse files Browse the repository at this point in the history
jwt 성공 응답값 중 status int로 변경
  • Loading branch information
Anna-Jin committed Jul 18, 2022
1 parent e5f94e9 commit 3bfc348
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class AuthResponse {

private final LocalDateTime timestamp = LocalDateTime.now();
private final HttpStatus status = HttpStatus.OK;
private final int status = 200;
private final String code = "S-SUC200";
private final String result = "SUCCESS";
private String token;
Expand Down

0 comments on commit 3bfc348

Please sign in to comment.