소스 검색

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

Fix missing comma into SettingsController.php
daniel 6 년 전
부모
커밋
3565f73a5e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Http/Controllers/SettingsController.php

+ 1 - 1
app/Http/Controllers/SettingsController.php

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