-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
<body> - BaseResponseStatus.java - 색깔을 찾을 수 없는 오류 코드 추가 - MoimStatus.java, Moim.java - MoimStatus 를 통해 모임의 상태를 관리한다. - 모임을 제거하는 로직을 추가한다. - MoimAndUserService.java - 마지막 사람이면 Moim 자체가 지워지도록 한다. <footer> - 관련: #49
- Loading branch information
김현재
committed
Mar 25, 2024
1 parent
6996828
commit 7c09698
Showing
5 changed files
with
35 additions
and
5 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
5 changes: 5 additions & 0 deletions
5
src/main/java/com/example/namo2/domain/moim/domain/MoimStatus.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,5 @@ | ||
package com.example.namo2.domain.moim.domain; | ||
|
||
public enum MoimStatus { | ||
INACTIVE, ACTIVE; | ||
} |
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