-
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: 방 참여, 나가기 기능 구현 #28
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
034ee6e
feat: Room, Participant, Routine, Certification 엔티티 생성
ymkim97 bb3add1
feat: Room 엔티티 인증 시간 검증 로직 추가
ymkim97 ece1678
test: Room 엔티티 테스트 코드 작성
ymkim97 b067abb
refactor: Room 관련 엔티티 수정
ymkim97 00558f6
feat: 방 생성 기능 구현
ymkim97 20cc332
chore: DynamicQuery Jacoco 예외 추가
ymkim97 25d0044
test: 방 생성 테스트 코드 작성
ymkim97 2dd7c1a
feat: 방 수정 기능 구현
ymkim97 7b8ff99
test: 방 수정 통합 테스트 작성
ymkim97 86b2b53
Merge branch 'develop' into feature/#6
ymkim97 051d56e
refactor: Member 관련 파일 이동
ymkim97 a35ce88
refactor: checkStyle에 맞춰서 변경
ymkim97 c299ac3
test: 추가 테스트 코드 작성
ymkim97 334cd6f
chore: Apache Commons Lang 의존성 추가
ymkim97 c0be2c9
feat: 방 참여 기능 구현
ymkim97 ebb5132
test: 방 참여 기능 테스트 작성
ymkim97 8b08467
Merge branch 'develop' into feature/#16
ymkim97 77f51ad
Merge branch 'develop' into feature/#16
ymkim97 3b71611
feat: 방 나가기 기능 구현
ymkim97 4df9541
chore: test yml JPA 로그 추가
ymkim97 f3cc036
test: 방 참여, 나가기 일부 테스트 작성
ymkim97 0753648
feat: 방 나가기 구현 마무리
ymkim97 0db0a20
fix: Morning -> Night 수정
ymkim97 d256953
test: 방 나가기 추가 테스트 코드 작성
ymkim97 7ce8ccc
test: 방 나가기 추가 테스트 작성
ymkim97 b40b601
feat: 방 ID로 존재 확인 로직 추가
ymkim97 d8a66df
Merge remote-tracking branch 'origin/feature/#16' into feature/#16
ymkim97 3c280c9
refactor: 오타 수정
ymkim97 a24e88f
Merge branch 'develop' into feature/#16
ymkim97 28288e9
fix: 테스트 실행 불가 해결
ymkim97 a27c9eb
fix: CI 오류 해결
ymkim97 92c512d
refactor: 코드 리뷰 반영
ymkim97 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.moabam.api.dto; | ||
|
||
import jakarta.validation.constraints.Pattern; | ||
|
||
public record EnterRoomRequest( | ||
@Pattern(regexp = "^(|[0-9]{4,8})$") String password | ||
) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
고냥 저는 Room도 soft delete 하는게 낫지 않을까 개인적인 생각 ㅋ.ㅋ