mirror of
https://github.com/friendica/friendica
synced 2024-11-18 16:23:41 +00:00
API: Missing endpoint for reshares had been added
This commit is contained in:
parent
ac24bc92cc
commit
1c7bc56cb3
1 changed files with 5 additions and 1 deletions
|
@ -2851,9 +2851,10 @@ function api_format_items_activities($item, $type = "json")
|
|||
'attendyes' => [],
|
||||
'attendno' => [],
|
||||
'attendmaybe' => [],
|
||||
'announce' => [],
|
||||
];
|
||||
|
||||
$condition = ['uid' => $item['uid'], 'thr-parent' => $item['uri']];
|
||||
$condition = ['uid' => $item['uid'], 'thr-parent' => $item['uri'], 'gravity' => GRAVITY_ACTIVITY];
|
||||
$ret = Item::selectForUser($item['uid'], ['author-id', 'verb'], $condition);
|
||||
|
||||
while ($parent_item = Item::fetch($ret)) {
|
||||
|
@ -2878,6 +2879,9 @@ function api_format_items_activities($item, $type = "json")
|
|||
case Activity::ATTENDMAYBE:
|
||||
$activities['attendmaybe'][] = $user;
|
||||
break;
|
||||
case Activity::ANNOUNCE:
|
||||
$activities['announce'][] = $user;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue