Expand limit.

This commit is contained in:
James Cole
2020-07-26 19:30:24 +02:00
parent fe66be673a
commit 9c14bc24e2
7 changed files with 33 additions and 33 deletions

View File

@@ -72,7 +72,7 @@ class AutocompleteRequest extends FormRequest
public function rules(): array
{
return [
'limit' => 'min:0|max:25'
'limit' => 'min:0|max:1337'
];
}
}