Skip to content

Commit

Permalink
Merge pull request #163 from Team-HMH/fix/#155-modify-app-maximum-time
Browse files Browse the repository at this point in the history
fix - μ±Œλ¦°μ§€ μ΅œμ†Œ μ‹œκ°„ μˆ˜μ •
  • Loading branch information
kseysh authored Jun 14, 2024
2 parents f2c1848 + 8bfde54 commit 1e54d66
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 = 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 1e54d66

Please sign in to comment.