-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0b03dc
commit 53b255d
Showing
21 changed files
with
46 additions
and
54 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
34 changes: 0 additions & 34 deletions
34
.../main/java/site/timecapsulearchive/core/domain/group/repository/GroupQueryRepository.java
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...epository/GroupInviteQueryRepository.java → ...epository/GroupInviteQueryRepository.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
2 changes: 1 addition & 1 deletion
2
...itory/GroupInviteQueryRepositoryImpl.java → ...itory/GroupInviteQueryRepositoryImpl.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
2 changes: 1 addition & 1 deletion
2
...oup/repository/GroupInviteRepository.java → ...viteRepository/GroupInviteRepository.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
20 changes: 20 additions & 0 deletions
20
...timecapsulearchive/core/domain/group/repository/groupRepository/GroupQueryRepository.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,20 @@ | ||
package site.timecapsulearchive.core.domain.group.repository.groupRepository; | ||
|
||
import java.time.ZonedDateTime; | ||
import java.util.Optional; | ||
import org.springframework.data.domain.Slice; | ||
import site.timecapsulearchive.core.domain.group.data.dto.GroupDetailDto; | ||
import site.timecapsulearchive.core.domain.group.data.dto.GroupSummaryDto; | ||
|
||
|
||
public interface GroupQueryRepository { | ||
|
||
Slice<GroupSummaryDto> findGroupsSlice( | ||
final Long memberId, | ||
final int size, | ||
final ZonedDateTime createdAt | ||
); | ||
|
||
Optional<GroupDetailDto> findGroupDetailByGroupId(final Long groupId); | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
.../repository/GroupQueryRepositoryImpl.java → ...pRepository/GroupQueryRepositoryImpl.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
2 changes: 1 addition & 1 deletion
2
...ain/group/repository/GroupRepository.java → ...tory/groupRepository/GroupRepository.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
2 changes: 1 addition & 1 deletion
2
...epository/MemberGroupQueryRepository.java → ...epository/MemberGroupQueryRepository.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
2 changes: 1 addition & 1 deletion
2
...itory/MemberGroupQueryRepositoryImpl.java → ...itory/MemberGroupQueryRepositoryImpl.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
5 changes: 3 additions & 2 deletions
5
...oup/repository/MemberGroupRepository.java → ...roupRepository/MemberGroupRepository.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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
package site.timecapsulearchive.core.domain.group.repository; | ||
package site.timecapsulearchive.core.domain.group.repository.memberGroupRepository; | ||
|
||
import org.springframework.data.repository.Repository; | ||
import site.timecapsulearchive.core.domain.group.entity.MemberGroup; | ||
|
||
public interface MemberGroupRepository extends Repository<MemberGroup, Long>, MemberGroupQueryRepository{ | ||
public interface MemberGroupRepository extends Repository<MemberGroup, Long>, | ||
MemberGroupQueryRepository { | ||
|
||
void save(MemberGroup memberGroup); | ||
} |
3 changes: 3 additions & 0 deletions
3
...nd/core/src/main/java/site/timecapsulearchive/core/domain/group/service/GroupService.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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
package site.timecapsulearchive.core.domain.group.service; | ||
|
||
import site.timecapsulearchive.core.domain.group.service.read.GroupReadService; | ||
import site.timecapsulearchive.core.domain.group.service.write.GroupWriteService; | ||
|
||
public interface GroupService extends GroupReadService, GroupWriteService { | ||
|
||
} |
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
2 changes: 1 addition & 1 deletion
2
...omain/group/service/GroupReadService.java → .../group/service/read/GroupReadService.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
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
2 changes: 1 addition & 1 deletion
2
...main/group/service/GroupWriteService.java → ...roup/service/write/GroupWriteService.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
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