mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-30 10:13:16 +00:00
Merge pull request #884 from pixelfed/frontend-ui-refactor
Frontend ui refactor
This commit is contained in:
commit
cbb39ebbb8
4 changed files with 3 additions and 3 deletions
|
@ -217,7 +217,7 @@ class PublicApiController extends Controller
|
||||||
$page = $request->input('page');
|
$page = $request->input('page');
|
||||||
$min = $request->input('min_id');
|
$min = $request->input('min_id');
|
||||||
$max = $request->input('max_id');
|
$max = $request->input('max_id');
|
||||||
$limit = $request->input('limit') ?? 10;
|
$limit = $request->input('limit') ?? 3;
|
||||||
|
|
||||||
// TODO: Use redis for timelines
|
// TODO: Use redis for timelines
|
||||||
// $timeline = Timeline::build()->local();
|
// $timeline = Timeline::build()->local();
|
||||||
|
@ -311,7 +311,7 @@ class PublicApiController extends Controller
|
||||||
$page = $request->input('page');
|
$page = $request->input('page');
|
||||||
$min = $request->input('min_id');
|
$min = $request->input('min_id');
|
||||||
$max = $request->input('max_id');
|
$max = $request->input('max_id');
|
||||||
$limit = $request->input('limit') ?? 10;
|
$limit = $request->input('limit') ?? 3;
|
||||||
|
|
||||||
// TODO: Use redis for timelines
|
// TODO: Use redis for timelines
|
||||||
// $timeline = Timeline::build()->local();
|
// $timeline = Timeline::build()->local();
|
||||||
|
|
BIN
public/js/timeline.js
vendored
BIN
public/js/timeline.js
vendored
Binary file not shown.
Binary file not shown.
|
@ -328,7 +328,7 @@
|
||||||
'mod': false,
|
'mod': false,
|
||||||
'dark': false,
|
'dark': false,
|
||||||
'notify': true,
|
'notify': true,
|
||||||
'infinite': false
|
'infinite': true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue