Merge pull request #412 from Simounet/fix/settings-validate

Fix missing comma into SettingsController.php
pull/413/head
daniel 7 years ago committed by GitHub
commit 3565f73a5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -31,7 +31,7 @@ class SettingsController extends Controller
{
$this->validate($request, [
'name' => 'required|string|max:' . config('pixelfed.max_name_length'),
'bio' => 'nullable|string|max:' . config('pixelfed.max_bio_length')
'bio' => 'nullable|string|max:' . config('pixelfed.max_bio_length'),
'website' => 'nullable|url',
'email' => 'nullable|email'
]);

Loading…
Cancel
Save