소스 검색

Update CollectionController, increase collection limit from 18 to 50

Daniel Supernault 5 년 전
부모
커밋
c2826fd3fd
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      app/Http/Controllers/CollectionController.php

+ 2 - 2
app/Http/Controllers/CollectionController.php

@@ -121,8 +121,8 @@ class CollectionController extends Controller
         $collection = Collection::whereProfileId($profileId)->findOrFail($collectionId);
         $count = $collection->items()->count();
 
-        if($count >= 18) {
-            abort(400, 'You can only add 18 posts per collection');
+        if($count >= 50) {
+            abort(400, 'You can only add 50 posts per collection');
         }
 
         $status = Status::whereScope('public')