Users can only get a score sheet for an entry they are assigned to judge
This commit is contained in:
parent
bfe15d47bf
commit
e948bfe0c5
|
|
@ -37,9 +37,11 @@ class JudgingController extends Controller
|
|||
return view('judging.audition_entry_list', compact('audition', 'entries', 'subscores', 'votes'));
|
||||
}
|
||||
|
||||
public function entryScoreSheet(Entry $entry)
|
||||
public function entryScoreSheet(Request $request, Entry $entry)
|
||||
{
|
||||
// TODO verify user is assigned to judge this audition
|
||||
if ($request->user()->cannot('judge', $entry->audition)) {
|
||||
return redirect()->route('judging.index')->with('error', 'You are not assigned to judge this entry');
|
||||
}
|
||||
$oldSheet = ScoreSheet::where('user_id', Auth::id())->where('entry_id', $entry->id)->value('subscores') ?? null;
|
||||
$oldVote = JudgeAdvancementVote::where('user_id', Auth::id())->where('entry_id', $entry->id)->first();
|
||||
$oldVote = $oldVote ? $oldVote->vote : 'novote';
|
||||
|
|
|
|||
Loading…
Reference in New Issue