0
votes

Can anyone please tell me how to link the community while creating wiki pages programmatically using javascript. While working with a wiki on the playground, wiki pages are getting created but it is not under any community. Community id is null.

Where to configure the community while creating a wiki page programmatically using javascript.

Thanks in Advance,

1

1 Answers

1
votes

You need to set the community id for the wiki like below

var wiki = wikiService.newWiki(); 
wiki.setTitle(title);
wiki.setCommunityUuid(communityId);
wikiService.createWiki(wiki);