Skip to content

Commit

Permalink
generate rated results
Browse files Browse the repository at this point in the history
  • Loading branch information
dmytropolityka committed Sep 17, 2024
1 parent 1ba71f3 commit fe7d0ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public void generateAutomaticNonGradedFeedback(ProgrammingExerciseStudentPartici
// save result and transmit it over websockets to notify the client about the status
var automaticResult = this.submissionService.saveNewEmptyResult(submission);
automaticResult.setAssessmentType(AssessmentType.AUTOMATIC_ATHENA);
automaticResult.setRated(false);
automaticResult.setRated(true);
automaticResult.setScore(100.0);
automaticResult.setSuccessful(null);
automaticResult.setCompletionDate(ZonedDateTime.now().plusMinutes(5)); // we do not want to show dates without a completion date, but we want the students to know their
Expand Down

0 comments on commit fe7d0ec

Please sign in to comment.