}
$request = $this->getRequest([
- 'max_id' => 0, // Return results older than this id
- 'since_id' => 0, // Return results newer than this id
- 'min_id' => 0, // Return results immediately newer than this id
- 'limit' => 40, // Maximum number of results to return. Defaults to 40.
+ 'max_id' => 0, // Return results older than this id
+ 'since_id' => 0, // Return results newer than this id
+ 'min_id' => 0, // Return results immediately newer than this id
+ 'limit' => 40, // Maximum number of results to return. Defaults to 40.
+ 'show_all' => false, // shows posts for all users including blocked and ignored users
], $request);
$id = $this->parameters['id'];
$params['order'] = ['uri-id'];
}
- if (!empty($uid)) {
+ if (!empty($uid) && !$request['show_all']) {
$condition = DBA::mergeConditions(
$condition,
["NOT `author-id` IN (SELECT `cid` FROM `user-contact` WHERE `uid` = ? AND (`blocked` OR `ignored`))", $uid]