A list of forms available in a process model designer is built according to the configuration files that are defined in a
bpm.formsConfig application property.
bpm-forms.xml example.
<?xml version="1.0" encoding="UTF-8"?>
<forms xmlns="http://schemas.haulmont.com/cuba/5.5/bpm-forms.xsd">
<form name="standardProcForm" default="true">
<param name="commentRequired" value="true"/>
<param name="procActorsVisible" value="true"/>
<param name="attachmentsVisible" value="true"/>
</form>
<form name="otherForm">
<param name="someParam" value="hello"/>
</form>
</forms>
The above also describes available form parameters with their names and default values.
A form with a default="true" attribute will be used as the default form in the model.

