Skip to content

Commit

Permalink
Fix: 카카오 로그인 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
tioon committed Apr 23, 2024
1 parent b8c8620 commit ed8afdd
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public class KakaoUserInfoDto {

private String id;
Expand All @@ -24,6 +26,7 @@ public KakaoUserInfoDto(String id, String email, String nickname) {
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public static class KakaoAccount {

private String email;
Expand All @@ -34,6 +37,7 @@ public static class KakaoAccount {
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public static class Profile {

private String nickname;
Expand Down

0 comments on commit ed8afdd

Please sign in to comment.