i have 2 forms defined in custom actions need to link both forms without any intents .is there any way ?
can I pass in custom actions such that one form should follow another ? my rule.yml is given below.
Blockquote
-
rule: activate mail id
steps:
#- action: action_info
#- intent: email_id
-
action: contimail_form
-
active_loop: contimail_form
-
-
rule: Submit mail id
condition:
- active_loop: contimail_form
steps:
-
action: contimail_form
-
active_loop: null
-
slot_was_set:
- requested_slot: null
-
action: action_get_email
-
action: action_reset_all_slots
-
action: action_mail_res
-
action: utter_get_started
3rd form
-
rule: Activate CART Roles Form
steps:
-
intent: CART_Roles_and_Authorizations
-
action: cart_roles_form
-
active_loop: cart_roles_form
-
-
rule: Submit CART Roles Form
condition:
- active_loop: cart_roles_form
steps:
-
action: cart_roles_form
-
active_loop: null
-
slot_was_set:
- requested_slot: null
#- action: action_info
Blockquote
note: here email form is common which i can uses for different other uses cases.