-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: ClockHolder LocalDate 추가 * refactor: RoomService 리팩토링 * refactor: SearchService 리팩토링 * refactor: 방 입장, 퇴장 리팩토링 * refactor: CertifiactionService 리팩토링 * refactor: RoomController 리팩토링 * test: InventorySearchRepository 테스트 추가 * chore: 테스트 코드 In-memory H2에서 MySQL로 변경 * feat: CertifyRoom Transaction 분리, 비관적 락 적용 * feat: 방 입장 낙관적 락 적용 * refactor: MySQL 변경으로 일부 테스트 수정 * test: 방 인증, 입장 동시성 테스트 작성 * test: 방장 위임 테스트 작성 * fix: 방 입장 낙관적 락 -> 비관적 락으로 변경 * feat: 방 참여 여부 확인, 참여 중이지 않은 방 정보 부르기 컨트롤러 * feat: 방 참여 여부 확인 서비스 추가 * feat: 참여중이지 않은 방 정보 조회 서비스 * test: 통합 테스트 코드 작성 * test: 테스트 코드 보완 * fix: memberId 가져오기로 변경 * refactor: redirection -> boolean으로 변경 * fix: Search 쿼리 수정 --------- Co-authored-by: Dev Uni <[email protected]>
- Loading branch information
1 parent
076e022
commit c1e925e
Showing
9 changed files
with
211 additions
and
9 deletions.
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
14 changes: 14 additions & 0 deletions
14
src/main/java/com/moabam/api/dto/room/UnJoinedRoomCertificateRankResponse.java
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,14 @@ | ||
package com.moabam.api.dto.room; | ||
|
||
import lombok.Builder; | ||
|
||
@Builder | ||
public record UnJoinedRoomCertificateRankResponse( | ||
int rank, | ||
Long memberId, | ||
String nickname, | ||
String awakeImage, | ||
String sleepImage | ||
) { | ||
|
||
} |
26 changes: 26 additions & 0 deletions
26
src/main/java/com/moabam/api/dto/room/UnJoinedRoomDetailsResponse.java
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,26 @@ | ||
package com.moabam.api.dto.room; | ||
|
||
import java.util.List; | ||
|
||
import com.moabam.api.domain.room.RoomType; | ||
|
||
import lombok.Builder; | ||
|
||
@Builder | ||
public record UnJoinedRoomDetailsResponse( | ||
Long roomId, | ||
boolean isPassword, | ||
String title, | ||
String roomImage, | ||
int level, | ||
int exp, | ||
RoomType roomType, | ||
int certifyTime, | ||
int currentUserCount, | ||
int maxUserCount, | ||
String announcement, | ||
List<RoutineResponse> routines, | ||
List<UnJoinedRoomCertificateRankResponse> certifiedRanks | ||
) { | ||
|
||
} |
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