|
|
|
@ -200,6 +200,9 @@ class ApiV1Controller extends Controller
|
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
$profile = Profile::whereNull('status')->findOrFail($id);
|
|
|
|
|
|
|
|
|
|
if($profile->domain) {
|
|
|
|
|
$res = [];
|
|
|
|
|
} else {
|
|
|
|
|
$settings = $profile->user->settings;
|
|
|
|
|
if($settings->show_profile_followers == true) {
|
|
|
|
|
$limit = $request->input('limit') ?? 40;
|
|
|
|
@ -209,6 +212,7 @@ class ApiV1Controller extends Controller
|
|
|
|
|
} else {
|
|
|
|
|
$res = [];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return response()->json($res);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -224,6 +228,9 @@ class ApiV1Controller extends Controller
|
|
|
|
|
abort_if(!$request->user(), 403);
|
|
|
|
|
$profile = Profile::whereNull('status')->findOrFail($id);
|
|
|
|
|
|
|
|
|
|
if($profile->domain) {
|
|
|
|
|
$res = [];
|
|
|
|
|
} else {
|
|
|
|
|
$settings = $profile->user->settings;
|
|
|
|
|
if($settings->show_profile_following == true) {
|
|
|
|
|
$limit = $request->input('limit') ?? 40;
|
|
|
|
@ -233,6 +240,8 @@ class ApiV1Controller extends Controller
|
|
|
|
|
} else {
|
|
|
|
|
$res = [];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return response()->json($res);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|