mirror of https://github.com/pixelfed/pixelfed.git
Update InternalApiController
This commit is contained in:
parent
52b5eab9b7
commit
a7b3174b1c
|
@ -106,7 +106,12 @@ class InternalApiController extends Controller
|
|||
});
|
||||
$following = array_merge($following, $filters);
|
||||
|
||||
$posts = Status::select('id', 'caption', 'profile_id')
|
||||
$posts = Status::select(
|
||||
'id',
|
||||
'caption',
|
||||
'profile_id',
|
||||
'type'
|
||||
)
|
||||
->whereNull('uri')
|
||||
->whereHas('media')
|
||||
->whereHas('profile', function($q) {
|
||||
|
@ -123,6 +128,7 @@ class InternalApiController extends Controller
|
|||
$res = [
|
||||
'posts' => $posts->map(function($post) {
|
||||
return [
|
||||
'type' => $post->type,
|
||||
'url' => $post->url(),
|
||||
'thumb' => $post->thumb(),
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue