0

How do I create a plugin that can create a new wiki page on the FogBugz wiki?

flag

1 Answer

1

That's a little vague, but the following code should get you started:

CWikiPage newpage = api.WikiPage.NewWikiPage();
newpage.ixWiki = ixWikiThisPageShouldBelongTo;
newpage.sHeadline = "My Cool Wiki Page";
newpage.sBody = "My cool wiki page content";
newpage.CommitWithComment("Added my cool content page");

You can find more documentation over on developers.fogbugz.com.

link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.