-
Notifications
You must be signed in to change notification settings - Fork 2
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 - 회원가입 기능 구현 #21
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.
회원가입까지 수고하셨습니다! 치명적인 수정사항은 없어서 컨벤션만 맞춰주시고 머지해주세요! 앞으로도 파이팅 아자아자
import java.util.List; | ||
|
||
public record OnboardingRequest( | ||
|
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.
P2. record에는 빈 줄 빼는 것으로 통일해요!:)
import sopt.org.HMH.global.auth.social.SocialPlatform; | ||
|
||
public record SocialSignUpRequest( | ||
|
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.
P2. 여기도 통일하면 좋을 것 같아융
SocialPlatform socialPlatform, | ||
@JsonProperty(value = "onboarding") | ||
OnboardingRequest onboardingRequest, | ||
@JsonProperty(value = "challenge") | ||
ChallengeRequest challengeRequest |
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.
P2. 위에는 애노테이션과 변수 사이에 빈줄이 있고 이 레코드 파일에는 빈줄이 없는 것 같아서 통일해주면 좋을 것 같아요이
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.
넵 어노테이션에서는 위에 공백을 붙이는 것으로 통일하도록 하겠습니다!
Related issue 🚀
Work Description 💚
PR 참고 사항