Update CollectionController, limit max title and description length

pull/3675/head
Daniel Supernault 2022-10-01 03:45:53 -06:00
rodzic eac3220ffd
commit 6e76cf4b68
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -65,8 +65,8 @@ class CollectionController extends Controller
{
abort_if(!Auth::check(), 403);
$this->validate($request, [
'title' => 'nullable',
'description' => 'nullable',
'title' => 'nullable|max:50',
'description' => 'nullable|max:500',
'visibility' => 'nullable|string|in:public,private,draft'
]);
@ -84,8 +84,8 @@ class CollectionController extends Controller
{
abort_if(!Auth::check(), 403);
$this->validate($request, [
'title' => 'nullable',
'description' => 'nullable',
'title' => 'nullable|max:50',
'description' => 'nullable|max:500',
'visibility' => 'required|alpha|in:public,private,draft'
]);
$profile = Auth::user()->profile;