Configuration of CiviProxy¶
When using the form processor behind a CiviProxy you need to white list the following api calls:
FormProcessorInstance.list
FormProcessorInstance.get_output
to get information about the fields returned from a form processorFormProcessor
.get_fields
to retrieve the inputs of a form processor.FormProcessor
._your_form_processor_name_
to run the form processorFormProcessorDefaults
.get_fields
to retrieve the fields for retrieving default data a form processorFormProcessorDefaults
._your_form_processor_name_
the actual retrieval of default dataFormProcessorValidation
.get_fields
to retrieve the inputs able to validateFormprocessorValidation
._your_form_processor_name_
the actual validation of your form processorFormProcessorCalculation
.get_fields
to retrieve the inputs able to do calculationsFormProcessorCalculation
._your_form_processor_name_
the actual calculation of your form processor