forked from mirror/pixelfed
Add local timeline to TimelineController
This commit is contained in:
parent
dde1e19d55
commit
a7b186d7fb
1 changed files with 13 additions and 2 deletions
|
@ -3,7 +3,8 @@
|
||||||
namespace App\Http\Controllers;
|
namespace App\Http\Controllers;
|
||||||
|
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use App\{Status, User};
|
use Auth;
|
||||||
|
use App\{Follower, Status, User};
|
||||||
|
|
||||||
class TimelineController extends Controller
|
class TimelineController extends Controller
|
||||||
{
|
{
|
||||||
|
@ -14,7 +15,17 @@ class TimelineController extends Controller
|
||||||
|
|
||||||
public function personal()
|
public function personal()
|
||||||
{
|
{
|
||||||
$timeline = Status::orderBy('id','desc')->paginate(10);
|
// TODO: Use redis for timelines
|
||||||
|
$following = Follower::whereProfileId(Auth::user()->profile->id)->pluck('following_id');
|
||||||
|
$timeline = Status::whereHas('media')->whereNull('in_reply_to_id')->whereIn('profile_id', $following)->orderBy('id','desc')->simplePaginate(10);
|
||||||
return view('timeline.personal', compact('timeline'));
|
return view('timeline.personal', compact('timeline'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function local()
|
||||||
|
{
|
||||||
|
// TODO: Use redis for timelines
|
||||||
|
$timeline = Status::whereHas('media')->whereNull('in_reply_to_id')->orderBy('id','desc')->simplePaginate(10);
|
||||||
|
return view('timeline.public', compact('timeline'));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue