-
Notifications
You must be signed in to change notification settings - Fork 1
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
JPA 엔티티를 구현한다. #170
JPA 엔티티를 구현한다. #170
Conversation
Quality Gate passedIssues Measures |
Test Results60 tests 60 ✅ 2s ⏱️ Results for commit 6aaaf53. |
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.
👍❤️
return Arrays.stream(WikiCategory.values()) | ||
.filter(it -> it.name().equalsIgnoreCase(category)) | ||
.findFirst() | ||
.orElseThrow(IllegalArgumentException::new); |
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.
Provider에서는 NoSuchElementException 던졌는데 통일되면 좋을 것 같아요 👍
CommentLike
엔티티의 type 컬럼은 기획의 구체화가 필요하므로 본 PR에서 제외합니다.