Wiki functionality in cuba

Hello:
I want to include in my app a wiki functionality so that users can cooperate in writing the documentation of the app (the help screens). Would this be straightforward to implement? Are there examples? What would be the best way to going about this?

Dan

Hi,
it’s not at all a wiki based solution, but i once created a sample for creating a help system (actually i just updated it today). You can have a look at it here:
[url=https://github.com/mariodavid/cuba-example-help-system]https://github.com/mariodavid/cuba-example-help-system[/url]
Basically it is an Entity (ContextHelp) that you can use for creating content. Obviously since CUBA has already user management either anyone or just a subset of the users are allowed to edit the help content.
If you want to have further information, you can check out the README.md on the project.
Besides the end result, this does not really have anything to do with a wiki, it does not support wiki syntax etc. Regarding tracability, you could use CUBAs entity log or entity snapshots feature to enable a similar result.
I hope this helps.
Bye
Mario

btw: what you could additionally do is just setup a wiki standalone and doing some kind of integration through an iframe (via the Embedded component in CUBA).