Skip to content

Commit

Permalink
fix - #155 챌린지 최소 시간 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kseysh committed Jun 11, 2024
1 parent 9580701 commit 8bfde54
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

@NoArgsConstructor(access = AccessLevel.PRIVATE)
public abstract class ChallengeConstants {
public static final Long MINIMUM_GOAL_TIME = 0L;
public static final Long MAXIMUM_GOAL_TIME = 21_600_000L;
public static final Long MINIMUM_GOAL_TIME = 3_600_000L; // 1시간
public static final Long MAXIMUM_GOAL_TIME = 21_600_000L; // 6시간
public static final Integer USAGE_POINT = 100;
public static final Integer EARNED_POINT = 20;

Expand Down

0 comments on commit 8bfde54

Please sign in to comment.