-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: ddl-auto validate로 다시 변경 * feat: V1__init 생성 * fix: 유저 검증 로직 삭제 * fix: sql 로그에서 제거 * feat: 요청 로그 * fix: 결제 취소 시 DB에서 payment 삭제 * feat: 리더만 볼 수 있게 예외 추가 * fix: 리더 아니면 예외 발생 * fix: 응답값 변경 * chore: apply lint * fix: 변수명 변경
- Loading branch information
Showing
9 changed files
with
46 additions
and
33 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
7 changes: 7 additions & 0 deletions
7
.../kotlin/uoslife/servermeeting/meetingteam/exception/OnlyTeamLeaderCanGetMatchException.kt
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,7 @@ | ||
package uoslife.servermeeting.meetingteam.exception | ||
|
||
import uoslife.servermeeting.global.error.exception.AccessDeniedException | ||
import uoslife.servermeeting.global.error.exception.ErrorCode | ||
|
||
class OnlyTeamLeaderCanGetMatchException : | ||
AccessDeniedException(ErrorCode.ONLY_TEAM_LEADER_CAN_GET_MATCH) |
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