-
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.
Merge branch 'develop_back_core' of https://github.com/tukcomCD2024/D…
…roidBlossom into develop_back_core
- Loading branch information
Showing
35 changed files
with
685 additions
and
228 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
26 changes: 0 additions & 26 deletions
26
...site/timecapsulearchive/core/domain/friend/data/response/FriendRequestsSliceResponse.java
This file was deleted.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
...psulearchive/core/domain/friend/repository/friend_invite/FriendInviteQueryRepository.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,8 +1,24 @@ | ||
package site.timecapsulearchive.core.domain.friend.repository.friend_invite; | ||
|
||
import java.time.ZonedDateTime; | ||
import java.util.List; | ||
import org.springframework.data.domain.Slice; | ||
import site.timecapsulearchive.core.domain.friend.data.dto.FriendSummaryDto; | ||
|
||
public interface FriendInviteQueryRepository { | ||
|
||
void bulkSave(final Long ownerId, final List<Long> friendIds); | ||
|
||
|
||
Slice<FriendSummaryDto> findFriendReceivingInvitesSlice( | ||
final Long memberId, | ||
final int size, | ||
final ZonedDateTime createdAt | ||
); | ||
|
||
Slice<FriendSummaryDto> findFriendSendingInvitesSlice( | ||
final Long memberId, | ||
final int size, | ||
final ZonedDateTime createdAt | ||
); | ||
} |
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
Oops, something went wrong.