forked from mirror/pixelfed
Merge pull request #412 from Simounet/fix/settings-validate
Fix missing comma into SettingsController.php
This commit is contained in:
commit
3565f73a5e
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ class SettingsController extends Controller
|
||||||
{
|
{
|
||||||
$this->validate($request, [
|
$this->validate($request, [
|
||||||
'name' => 'required|string|max:' . config('pixelfed.max_name_length'),
|
'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',
|
'website' => 'nullable|url',
|
||||||
'email' => 'nullable|email'
|
'email' => 'nullable|email'
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in a new issue