-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feat] 연동된 피그마 계정 조회, 연동 해제 기능 구현 #45
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다~!
@@ -36,13 +38,20 @@ public class Figma extends BaseTimeEntity { | |||
@Column(nullable = false) | |||
private String figmaUserId; | |||
|
|||
@Column(nullable = true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nullable = true 는 기본 설정이라서 추가를 안해도 괜찮을 것 같습니다!
public List<FigmaAccountResponse> getFigmaAccount() { | ||
final Member currentMember = memberUtil.getCurrentMember(); | ||
List<Figma> figmaList = figmaRepository.findByMemberAndDeletedAtIsNull(currentMember); | ||
if (figmaList.isEmpty()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
처음 사이트에 구글 로그인을 한 경우 피그마 계정이 없을 수 있으니 예외 처리를 하지 않는 건 어떨까요?
|
#️⃣ 관련 이슈
💡 작업내용
1. 연동된 피그마 계정 조회
2. 피그마 계정 연동 해제 기능 구현
📸 스크린샷(선택)
📝 기타