Update PublicApiController

This commit is contained in:
Daniel Supernault 2019-04-17 23:56:33 -06:00
parent 79da0692b4
commit 292e6e18b1
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 4 additions and 4 deletions

View File

@ -528,8 +528,8 @@ class PublicApiController extends Controller
{
abort_unless(Auth::check(), 403);
$profile = Profile::with('user')->whereNull('status')->whereNull('domain')->findOrFail($id);
if($profile->is_private || !$profile->user->settings->show_profile_followers) {
return [];
if($profile->is_private || !$profile->user->settings->show_profile_followers && Auth::id() != $profile->user_id) {
return response()->json([]);
}
$followers = $profile->followers()->orderByDesc('followers.created_at')->paginate(10);
$resource = new Fractal\Resource\Collection($followers, new AccountTransformer());
@ -542,8 +542,8 @@ class PublicApiController extends Controller
{
abort_unless(Auth::check(), 403);
$profile = Profile::with('user')->whereNull('status')->whereNull('domain')->findOrFail($id);
if($profile->is_private || !$profile->user->settings->show_profile_following) {
return [];
if($profile->is_private || !$profile->user->settings->show_profile_following && Auth::id() != $profile->user_id) {
return response()->json([]);
}
$following = $profile->following()->orderByDesc('followers.created_at')->paginate(10);
$resource = new Fractal\Resource\Collection($following, new AccountTransformer());