We are trying to find a better way to handle situations when more than 1 person needs to approve or reject a form submission. Below is the current setup:
In the above situation, an approval could be needed by more than 1 person. If it does go to more than person they can click on Approve or Reject buttons. We then have some JavaScript to detect if the Reject button is clicked and then inserts the word Rejected into a single line field. At the Approved or Denied 3 gateway, it evaluates if the word reject is present in that field.
With the release of Forms 10 and the Signal Throw & Catch events, would it be possible to use those to accomplish the same thing? I like to try and use the built in features of Forms as much as possible instead of custom code.