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 5e99b64 commit 9580701
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 = 7200000L;
public static final Long MAXIMUM_GOAL_TIME = 21600000L;
public static final Long MINIMUM_GOAL_TIME = 0L;
public static final Long MAXIMUM_GOAL_TIME = 21_600_000L;
public static final Integer USAGE_POINT = 100;
public static final Integer EARNED_POINT = 20;

Expand Down

0 comments on commit 9580701

Please sign in to comment.