-
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.
fix : final 추가, group_member -> member_group, 픽스처로 분리
- Loading branch information
1 parent
7e5c408
commit d87d0c4
Showing
28 changed files
with
167 additions
and
152 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
2 changes: 1 addition & 1 deletion
2
...ain/java/site/timecapsulearchive/core/domain/member/repository/MemberQueryRepository.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
2 changes: 1 addition & 1 deletion
2
...oup_member/data/GroupOwnerSummaryDto.java → ...mber_group/data/GroupOwnerSummaryDto.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
...main/group_member/entity/GroupInvite.java → ...main/member_group/entity/GroupInvite.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
...main/group_member/entity/MemberGroup.java → ...main/member_group/entity/MemberGroup.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
...ception/GroupInviteNotFoundException.java → ...ception/GroupInviteNotFoundException.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
..._member/exception/GroupQuitException.java → ...r_group/exception/GroupQuitException.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
6 changes: 3 additions & 3 deletions
6
...ion/GroupMemberDuplicatedIdException.java → ...MemberGroupKickDuplicatedIdException.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,11 +1,11 @@ | ||
package site.timecapsulearchive.core.domain.group_member.exception; | ||
package site.timecapsulearchive.core.domain.member_group.exception; | ||
|
||
import site.timecapsulearchive.core.global.error.ErrorCode; | ||
import site.timecapsulearchive.core.global.error.exception.BusinessException; | ||
|
||
public class GroupMemberDuplicatedIdException extends BusinessException { | ||
public class MemberGroupKickDuplicatedIdException extends BusinessException { | ||
|
||
public GroupMemberDuplicatedIdException() { | ||
public MemberGroupKickDuplicatedIdException() { | ||
super(ErrorCode.GROUP_MEMBER_DUPLICATED_ID_ERROR); | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
...ception/GroupMemberNotFoundException.java → ...ception/MemberGroupNotFoundException.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,11 +1,11 @@ | ||
package site.timecapsulearchive.core.domain.group_member.exception; | ||
package site.timecapsulearchive.core.domain.member_group.exception; | ||
|
||
import site.timecapsulearchive.core.global.error.ErrorCode; | ||
import site.timecapsulearchive.core.global.error.exception.BusinessException; | ||
|
||
public class GroupMemberNotFoundException extends BusinessException { | ||
public class MemberGroupNotFoundException extends BusinessException { | ||
|
||
public GroupMemberNotFoundException() { | ||
public MemberGroupNotFoundException() { | ||
super(ErrorCode.GROUP_MEMBER_NOT_FOUND_ERROR); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
.../exception/NoGroupAuthorityException.java → .../exception/NoGroupAuthorityException.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/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
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
4 changes: 2 additions & 2 deletions
4
...viteRepository/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
4 changes: 2 additions & 2 deletions
4
...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
Oops, something went wrong.