Skip to content

Commit

Permalink
push에 시간을 더함
Browse files Browse the repository at this point in the history
  • Loading branch information
Minjoo-kang123 committed Jul 9, 2024
1 parent 5de75cd commit e878c74
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ public int insertDailyChallengeRecord() {
}
List<Group> groups = groupRepository.findActiveGroup(LocalDate.now());
for(Group g : groups){
log.info(g.toString());
String wakeUp = g.getWakeupTime();
if (randomNumber == 1){
challenge += ". Your group's Time is at " + wakeUp;
}
List<GroupMember> groupMembers = groupMemberRepository.findGroupMemberByGroupId(g.getId());
for(GroupMember gm : groupMembers){
String deviceId = gm.getUser().getDeviceId();
Expand Down

0 comments on commit e878c74

Please sign in to comment.