Skip to content

Commit

Permalink
[Bug] 피그마 로그인 시 응답을 받지 못하는 오류 해결 (#75)
Browse files Browse the repository at this point in the history
* fix : jsonignore 추가

* feat : .DS_Store gitignore 추가
  • Loading branch information
iiqcov authored Nov 26, 2024
1 parent 63e32e9 commit 74c5464
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ bin/
!**/src/test/**/bin/

### IntelliJ IDEA ###
.DS_Store
.env
.idea
*.iws
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
package gigedi.dev.domain.auth.dto.response;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public record FigmaAccountResponse(String figmaId, String email) {}
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
package gigedi.dev.domain.auth.dto.response;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonIgnoreProperties(ignoreUnknown = true)
public record FigmaTokenResponse(
@JsonProperty("user_id") Long userId,
@JsonProperty("access_token") String accessToken,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
package gigedi.dev.domain.auth.dto.response;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown = true)
public record FigmaUserResponse(String id, String email, String handle, String img_url) {}

0 comments on commit 74c5464

Please sign in to comment.