Skip to content

Commit

Permalink
fix(transcript): make project duration nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
keenthekeen committed May 21, 2024
1 parent 45b0e3d commit 5206e65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/ProjectController.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public function update(Request $request, Project $project) {
'advisor' => 'required|filled|string|min:5|max:255',
'type' => 'required|filled|string|max:20',
'recurrence' => 'required|filled|string|max:20',
'duration' => 'required|filled|numeric|max:999|min:1',
'duration' => 'nullable|numeric|max:999|min:1',
'estimated_attendees' => 'nullable|string|max:40',
'period_start' => 'required|date',
'period_end' => 'required|date',
Expand Down

0 comments on commit 5206e65

Please sign in to comment.