mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update FederationController
This commit is contained in:
parent
223fae10e2
commit
7125f803a7
1 changed files with 4 additions and 1 deletions
|
@ -140,7 +140,10 @@ class FederationController extends Controller
|
|||
}
|
||||
|
||||
$user = Profile::whereNull('remote_url')->whereUsername($username)->firstOrFail();
|
||||
$timeline = $user->statuses()->orderBy('created_at', 'desc')->paginate(10);
|
||||
if($user->is_private) {
|
||||
return response()->json(['error'=>'403', 'msg' => 'private profile'], 403);
|
||||
}
|
||||
$timeline = $user->statuses()->whereVisibility('public')->orderBy('created_at', 'desc')->paginate(10);
|
||||
$fractal = new Fractal\Manager();
|
||||
$resource = new Fractal\Resource\Item($user, new ProfileOutbox());
|
||||
$res = $fractal->createData($resource)->toArray();
|
||||
|
|
Loading…
Reference in a new issue