Hey,
Is there a commend for reindex in confluence like JIRA?
boolean wasIndexing = ImportUtils.isIndexIssues();
ImportUtils.setIndexIssues(true)
MutableIssue myIssue = issueManager.getIssueObject(issue.id);
indexManager.reIndex(myIssue);
ImportUtils.setIndexIssues(wasIndexing);Second, Is it OK to use with those commend to create a new page from rest endpoint?
def PublishPage = new Page(title: sourcepage.title , bodyAsString: sourcepage.getBodyAsString(),space: space, parentPage: HomePage) //create the new page (copy) pageManager.saveContentEntity(PublishPage, DefaultSaveContext.DEFAULT)
HomePage.addChild(PublishPage)
pageManager.saveContentEntity(HomePage, DefaultSaveContext.MINOR_EDIT)Is there a more "healthy" way? Or that way is good?
+using "trashpage" commend to delete page, can it cause problems in the environment?
pageManager.trashPage(desPage)
Thanks!