Hi,
I am using Uniform for a form submission, and want to run an action only if a checkbox in the form is checked. So I have something like this:
$form->honeypotGuard()->honeytimeGuard(...)->emailAction(...)->webhookAction(...)->done();
But only want to run the webhookAction
if the checkbox is checked (it is a mailing list signup). What is the best way of doing this?