Skip to content

Commit

Permalink
Merge pull request #145 from Modagbul/feat/mission-alarm
Browse files Browse the repository at this point in the history
Feat/mission alarm
  • Loading branch information
seungueonn authored Dec 13, 2023
2 parents 431baf6 + 8cbc581 commit db689f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public boolean findRepeatMissionsByTeamId(Long teamId) {
mission.team.teamId.eq(teamId),
mission.type.eq(MissionType.REPEAT),
mission.status.eq(MissionStatus.ONGOING)
).fetchCount() < 2;
).fetchCount() < 3;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public enum ErrorCode {
NO_ACCESS_CREATE_MISSION("M0001", "소모임장만 미션을 생성할 수 있습니다."),
NOT_FOUND_MISSION("M0002", "미션을 찾을 수 없습니다."),
NOT_FOUND_END_MISSION("M0003", "기한이 지난 미션을 찾을 수 없습니다."),
NO_MORE_CREATE_MISSION("M0004", "반복미션은 3개까지 생성할 수 있습니다."),
NO_MORE_CREATE_MISSION("M0004", "반복미션은 2개까지 생성할 수 있습니다."),
NOT_FOUND_MISSION_ARCHIVE("MA0001", "아직 미션을 제출하지 않았습니다."),
NOT_YET_MISSION_ARCHIVE("MA0001", "아직 미션을 제출할 수 없습니다."),
NO_MORE_ARCHIVE_ERROR("MA0001", "지정한 횟수 이상 미션을 인증할 수 없습니다."),
Expand Down

0 comments on commit db689f4

Please sign in to comment.