- restore nullable for position

This commit is contained in:
2023-07-29 00:58:05 +02:00
parent 7fd3be06ea
commit 753421a5a0
3 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ class CVRequest extends FormRequest
'locations' => 'required|array',
'mission' => 'nullable|string',
'rodo' => 'nullable|string',
'position' => 'required|string',
'position' => 'nullable|string',
];
}
}