mirror of https://github.com/pixelfed/pixelfed.git
Merge pull request #878 from pixelfed/frontend-ui-refactor
Update PublicApiController
This commit is contained in:
commit
199ebc147e
|
@ -266,7 +266,21 @@ class PublicApiController extends Controller
|
|||
->limit($limit)
|
||||
->get();
|
||||
} else {
|
||||
$timeline = Status::whereHas('media')
|
||||
$timeline = Status::select(
|
||||
'id',
|
||||
'uri',
|
||||
'caption',
|
||||
'rendered',
|
||||
'profile_id',
|
||||
'type',
|
||||
'in_reply_to_id',
|
||||
'reblog_of_id',
|
||||
'is_nsfw',
|
||||
'scope',
|
||||
'local',
|
||||
'created_at',
|
||||
'updated_at'
|
||||
)->whereHas('media')
|
||||
->whereLocal(true)
|
||||
->whereNull('uri')
|
||||
->whereNotIn('profile_id', $filtered)
|
||||
|
@ -355,7 +369,21 @@ class PublicApiController extends Controller
|
|||
->limit($limit)
|
||||
->get();
|
||||
} else {
|
||||
$timeline = Status::whereHas('media')
|
||||
$timeline = Status::select(
|
||||
'id',
|
||||
'uri',
|
||||
'caption',
|
||||
'rendered',
|
||||
'profile_id',
|
||||
'type',
|
||||
'in_reply_to_id',
|
||||
'reblog_of_id',
|
||||
'is_nsfw',
|
||||
'scope',
|
||||
'local',
|
||||
'created_at',
|
||||
'updated_at'
|
||||
)->whereHas('media')
|
||||
->whereLocal(true)
|
||||
->whereNull('uri')
|
||||
->whereIn('profile_id', $following)
|
||||
|
|
Loading…
Reference in New Issue