-
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.
* feat: 알림톡 기능 구현 / 예약등록 알림톡 적용 * feat: 예약 확정 알림톡 적용 * feat: 예약 확정 + 초대장 알림톡 적용 * feat: 예약 취소 알림톡 구현 * feat: 예약 취소 알림톡 구현 * fix: 예약 확정 로직 수정
- Loading branch information
Showing
13 changed files
with
263 additions
and
108 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
9 changes: 9 additions & 0 deletions
9
...java/com/shallwe/domain/reservation/exception/NotAvailableReservationStatusException.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,9 @@ | ||
package com.shallwe.domain.reservation.exception; | ||
|
||
public class NotAvailableReservationStatusException extends RuntimeException { | ||
|
||
public NotAvailableReservationStatusException() { | ||
super("예약 취소 가능한 상태가 아닙니다."); | ||
} | ||
|
||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/com/shallwe/domain/reservation/exception/UserReservationMismatchException.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,9 @@ | ||
package com.shallwe.domain.reservation.exception; | ||
|
||
public class UserReservationMismatchException extends RuntimeException { | ||
|
||
public UserReservationMismatchException() { | ||
super("예약자 정보가 일치하지 않습니다."); | ||
} | ||
|
||
} |
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
9 changes: 9 additions & 0 deletions
9
src/main/java/com/shallwe/domain/shopowner/exception/NotReservedException.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,9 @@ | ||
package com.shallwe.domain.shopowner.exception; | ||
|
||
public class NotReservedException extends RuntimeException { | ||
|
||
public NotReservedException() { | ||
super("예약 확정 대기상태가 아닌 예약입니다."); | ||
} | ||
|
||
} |
9 changes: 9 additions & 0 deletions
9
...java/com/shallwe/domain/shopowner/exception/ShopOwnerExperienceGiftMismatchException.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,9 @@ | ||
package com.shallwe.domain.shopowner.exception; | ||
|
||
public class ShopOwnerExperienceGiftMismatchException extends RuntimeException { | ||
|
||
public ShopOwnerExperienceGiftMismatchException() { | ||
super("해당 사장의 상품이 아닙니다."); | ||
} | ||
|
||
} |
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.