Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

ScriptRunner for confleunce- QA

Neta Elyakim
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 22, 2018

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!

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
0 votes
Answer accepted
Neta Elyakim
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 28, 2018

Any idea?

Rafael Franco
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 28, 2018

Hi @Neta Elyakim,

 

Seems good to me.

 

Rafael

TAGS
AUG Leaders

Atlassian Community Events