Update update_credentials endpoint, enforce validator limits

This commit is contained in:
Daniel Supernault 2022-08-01 19:47:11 -06:00
parent 49d43e06e2
commit b700790bb4
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -217,10 +217,10 @@ class ApiV1Controller extends Controller
$this->validate($request, [
'avatar' => 'sometimes|mimetypes:image/jpeg,image/png|min:10|max:' . config('pixelfed.max_avatar_size'),
'display_name' => 'nullable|string',
'note' => 'nullable|string',
'display_name' => 'nullable|string|max:30',
'note' => 'nullable|string|max:200',
'locked' => 'nullable',
'website' => 'nullable',
'website' => 'nullable|string|max:120',
// 'source.privacy' => 'nullable|in:unlisted,public,private',
// 'source.sensitive' => 'nullable|boolean'
], [