here is the flow action/form 1 output → continue?(that is based on form 1 output)
- yes → form 2
here is the flow action/form 1 output → continue?(that is based on form 1 output)
Try a rule something like this. I’m going assume you set a featurized slot called next_form_name
to form_2
when the user says “Yes”.
- rule: Deactivate current_form and activate form_2 when 'yes'
condition:
- active_loop: current_form
- slot_was_set:
- next_form_name: form_2
steps:
- action: current_form
- active_loop: null
- slot_was_set:
- requested_slot: null
- action: form_2