Add TODO issue reminder

This commit is contained in:
Matt Young 2024-10-31 07:07:32 -05:00
parent e539d71d5f
commit 0ab7d70612
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,7 @@ class ScoreController extends Controller
}
$score->delete();
// TODO clear scoring cache when a score is deleted
return redirect()->back()->with('success', 'Score Deleted');
}
@ -105,6 +106,7 @@ class ScoreController extends Controller
['subscores' => $sheet['scores']]
);
}
// TODO rewrite to use EnterScore action or clear score cache
return redirect()->route('scores.chooseEntry')->with('success', count($preparedScoreSheets).' Scores saved');
}