Show failed prelim result on user dashboard

Addresses #45
This commit is contained in:
Matt Young 2024-10-31 19:34:03 -05:00
parent bf0e5cc8bb
commit 5af85ae589
1 changed files with 4 additions and 0 deletions

View File

@ -18,6 +18,10 @@ class GetEntrySeatingResult
public function getResult(Entry $entry): string
{
if ($entry->hasFlag('failed_prelim')) {
return 'Failed Prelim';
}
if ($entry->hasFlag('no_show')) {
return 'No Show';
}