Preload more data in getList
This commit is contained in:
parent
8901634790
commit
100568bfbb
@ -82,7 +82,9 @@ class Api
|
|||||||
*/
|
*/
|
||||||
public function getList($rootPage)
|
public function getList($rootPage)
|
||||||
{
|
{
|
||||||
$url = "content/$rootPage/child/page?expand=version";
|
//We do a limit of 15 as it appears that confluence has
|
||||||
|
//a bug when retrieving more than 20 entries with "body.storage"
|
||||||
|
$url = "content/$rootPage/child/page?expand=version,body.storage&limit=15";
|
||||||
|
|
||||||
$pages = [];
|
$pages = [];
|
||||||
|
|
||||||
@ -98,6 +100,7 @@ class Api
|
|||||||
"id" => $result['id'],
|
"id" => $result['id'],
|
||||||
"title" => $result['title'],
|
"title" => $result['title'],
|
||||||
"version" => $result['version']['number'],
|
"version" => $result['version']['number'],
|
||||||
|
"content" => $result['body']['storage']['value'],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user