-
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 'refs/heads/develop_back_core' into fix/group_invite_lis…
…t_v2-B-#473 # Conflicts: # backend/core/src/main/java/site/timecapsulearchive/core/domain/member_group/repository/group_invite_repository/GroupInviteQueryRepository.java # backend/core/src/main/java/site/timecapsulearchive/core/domain/member_group/repository/group_invite_repository/GroupInviteQueryRepositoryImpl.java
- Loading branch information
Showing
37 changed files
with
771 additions
and
149 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
8 changes: 8 additions & 0 deletions
8
...in/java/site/timecapsulearchive/core/domain/friend/data/dto/FriendInviteMemberIdsDto.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,8 @@ | ||
package site.timecapsulearchive.core.domain.friend.data.dto; | ||
|
||
public record FriendInviteMemberIdsDto( | ||
Long ownerId, | ||
Long friendId | ||
) { | ||
|
||
} |
18 changes: 18 additions & 0 deletions
18
...java/site/timecapsulearchive/core/domain/friend/data/dto/FriendInviteNotificationDto.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,18 @@ | ||
package site.timecapsulearchive.core.domain.friend.data.dto; | ||
|
||
import java.util.List; | ||
|
||
public record FriendInviteNotificationDto( | ||
String nickname, | ||
String profileUrl, | ||
List<Long> foundFriendIds | ||
) { | ||
|
||
public static FriendInviteNotificationDto create( | ||
final String nickname, | ||
final String profileUrl, | ||
final List<Long> foundFriendIds | ||
) { | ||
return new FriendInviteNotificationDto(nickname, profileUrl, foundFriendIds); | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
...nd/core/src/main/java/site/timecapsulearchive/core/domain/friend/entity/FriendInvite.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
11 changes: 11 additions & 0 deletions
11
.../site/timecapsulearchive/core/domain/friend/exception/FriendInviteDuplicateException.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,11 @@ | ||
package site.timecapsulearchive.core.domain.friend.exception; | ||
|
||
import site.timecapsulearchive.core.global.error.ErrorCode; | ||
import site.timecapsulearchive.core.global.error.exception.BusinessException; | ||
|
||
public class FriendInviteDuplicateException extends BusinessException { | ||
|
||
public FriendInviteDuplicateException() { | ||
super(ErrorCode.FRIEND_INVITE_DUPLICATE_ERROR); | ||
} | ||
} |
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.