Check for a prelim result after entering a prelim score.

This commit is contained in:
Matt Young 2025-10-14 09:12:14 -05:00
parent 761f63aa55
commit add9f9e25d
1 changed files with 4 additions and 0 deletions

View File

@ -123,6 +123,10 @@ class EnterPrelimScore
'students' => [$entry->student_id], 'students' => [$entry->student_id],
]); ]);
// Check if we can make a status decision
$checker = app(CheckPrelimResult::class);
$checker($entry, true);
return $prelimScoreSheet; return $prelimScoreSheet;
} }
} }