Fix missing comma into SettingsController.php

pull/412/head
Simounet 2018-08-27 13:28:46 +02:00
rodzic d229ef4144
commit b1e639eb1c
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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'
]);