Skip to content
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

전체적으로 생년월일 optional 하게 처리하도록 수정 #284

Merged
merged 5 commits into from
Dec 26, 2022

Conversation

hyejungg
Copy link
Member

@hyejungg hyejungg commented Dec 25, 2022

✒️ 관련 이슈번호

🔑 Key Changes

  1. Onboarding 엔티티 birthday 데이터타입 LocalDate -> String
    • 생년월일을 생략하는 경우 ""로 클라에서 보내신다고 하셔서 String으로 수정했습니다. 괜찮나요?! (기존에 nullable = false 였길래요!)
    • 기존 형태(LocalDate) 유지하고 nuallble = true로 수정하려고 했는데
      • 안드한테 물어보니까 어차피 String 형태로 주고 있고, 기존에도 LocalDate -> String 형태로 박는거였어서 String 으로 변경함!
  2. 회원가입 시 birthday optional 반영 (birthday="", isPublic=false)
    • birthday="", isPublic=true이면 400 에러 던집니다.
  3. 프로필 정보 수정 시 birthday optional 반영 (birthday="", isPublic=false)
  4. 나/룸메이트 조회 시 생년월일이 없는 경우 빈 스트링 보내도록 response 수정
  5. 호미의 탄생 배지 스케줄러 돌릴 때 엔티티 데이터 타입 변경으로 DateUtils 에 오늘날짜.toString() 하는 함수 만들어서 수정

📢 To Reviewers

  • 나/룸메이트 조회 시 age, birthday 부분이 없는 경우
    • "" 또는 null로 전달해주는게 의진오빠가 더 편하다고 해서 호옥시 안드는 null 처리를 안했을까봐 ""로 수정했습니다!

@hyejungg hyejungg added 🐣 혜정 🐣 혜정이가 했다아~ 🔧 Fix 간단한 수정 labels Dec 25, 2022
@hyejungg hyejungg added this to the Hous 1차 릴리즈 milestone Dec 25, 2022
@hyejungg hyejungg self-assigned this Dec 25, 2022
@orijoon98 orijoon98 self-requested a review December 26, 2022 00:39
Copy link
Member

@orijoon98 orijoon98 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨어요!! 네이밍 하나만 수정하구 머지해주실 수 있을까요?!

Comment on lines 19 to 20

List<User> findAllUserByBirthday(LocalDate birthday);
List<User> findAllUserByBirthday(String birthday);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

이거 네이밍 findAllUsersByBirthday 가능할까요?!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐣 혜정 🐣 혜정이가 했다아~ 🔧 Fix 간단한 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

생년월일 optional 하게 수정
2 participants