Skip to content

Commit

Permalink
chore - #22 이후 포인트 사용 api를 위한 isSuccess값 true로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kseysh committed Jan 9, 2024
1 parent 4b84835 commit c982333
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,10 @@ public class DayChallenge extends BaseTimeEntity {
@OneToMany(mappedBy = "dayChallenge")
private List<App> apps;

@Builder
public DayChallenge(Challenge challenge, Long goalTime) {
this.challenge = challenge;
this.goalTime = goalTime;
this.isSuccess = false;
this.isSuccess = true;
this.didGettingPoint = false;
}
}

0 comments on commit c982333

Please sign in to comment.