fix: do not add ancestors if page is in the root

This commit is contained in:
Nikolai Rodionov 2023-02-28 16:34:54 +01:00
parent 85cc3f5e86
commit f3553e9dfd
1 changed files with 2 additions and 1 deletions

View File

@ -357,9 +357,10 @@ class MkdocsWithConfluence(BasePlugin):
"type": "page",
"title": page_name,
"space": {"key": space},
"ancestors": [{"id": parent_page_id}],
"body": {"storage": {"value": page_content_in_storage_format, "representation": "storage"}},
}
if parent_page_id:
data["ancestors"] = [{"id": parent_page_id}]
logger.debug(f"DATA: {data}")
if not self.dryrun:
try: