-
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/49] 차단한 회원 목록 조회 API 구현 #53
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.gamegoo.apiPayload.exception.handler; | ||
|
||
import com.gamegoo.apiPayload.code.BaseErrorCode; | ||
import com.gamegoo.apiPayload.exception.GeneralException; | ||
|
||
public class PageHandler extends GeneralException { | ||
public PageHandler(BaseErrorCode code) { | ||
super(code); | ||
} | ||
} |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 프로필 이미지 변수명을 profile_image, profileImg 둘 중 하나로 통일하는 것이 좋을 것 같습니다! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 앗 저는 엔티티에서도 camel case로 속성들 선언했어서 이번에도 camel case로 한거긴 한데,, 어떤걸로 통일하는게 좋을까요? |
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.
NOT_VALID, INVALID 둘 중에 어떤거 사용할지도 Code Convention 정하면 좋을 것 같아요!
전 INVALID로 개발했긴한데 둘 다 상관없습니다.
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.
앗 그럼 저도 INVALID로 수정하겠습니다