Skip to content

Commit

Permalink
Fix checking first attendance api
Browse files Browse the repository at this point in the history
  • Loading branch information
mkSpace committed Aug 6, 2023
1 parent 17d367d commit 0a7aa8b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class StudyFacade(
}

fun checkFirstAttendance(studyId: Long): StudyFirstAttendanceResponse {
return StudyFirstAttendanceResponse.of(attendanceService.existFirstAttendanceByStudyId(studyId))
return StudyFirstAttendanceResponse.of(!attendanceService.existFirstAttendanceByStudyId(studyId))
}

@Transactional
Expand Down

0 comments on commit 0a7aa8b

Please sign in to comment.