mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 22:41:27 +00:00
Update discover controller
This commit is contained in:
parent
c0609671c2
commit
809423914f
1 changed files with 6 additions and 1 deletions
|
@ -19,8 +19,12 @@ class DiscoverController extends Controller
|
|||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
public function home()
|
||||
public function home(Request $request)
|
||||
{
|
||||
$this->validate($request, [
|
||||
'page' => 'nullable|integer|max:50'
|
||||
]);
|
||||
|
||||
$pid = Auth::user()->profile->id;
|
||||
|
||||
$following = Cache::remember('feature:discover:following:'.$pid, 15, function() use($pid) {
|
||||
|
@ -52,6 +56,7 @@ class DiscoverController extends Controller
|
|||
->whereHas('profile', function($q) {
|
||||
$q->where('is_private', false);
|
||||
})
|
||||
->whereIsNsfw(false)
|
||||
->whereVisibility('public')
|
||||
->where('profile_id', '!=', $pid)
|
||||
->whereNotIn('profile_id', $following)
|
||||
|
|
Loading…
Reference in a new issue