Update PublicApiController, increase home timeline limit to 40

pull/1708/head
Daniel Supernault 2019-09-20 22:12:23 -06:00
rodzic 83c545aa57
commit 5c327a0ae2
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -332,7 +332,7 @@ class PublicApiController extends Controller
'page' => 'nullable|integer|max:40',
'min_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
'max_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
'limit' => 'nullable|integer|max:20'
'limit' => 'nullable|integer|max:40'
]);
$page = $request->input('page');