Story with forms

Hi Team, I have a query about form with story. I have created rasa2.0 app, it contains 4 form fields. ex:name,number,email and gender. all are text. below is my story.

  • story: Activate form

    steps:

    • intent: greet

    • action: utter_name

    • action: contact_form

    • active_loop: contact_form

    • active_loop: null

    • slot_was_set:

      • requested_slot: null
    • action: action_submit

after submit also can i give intents and actions in the same story? like below or - action: action_submit always in the last step in story?

  • story: Activate form

    steps:

    • intent: greet

    • action: utter_name

    • action: contact_form

    • active_loop: contact_form

    • active_loop: null

    • slot_was_set:

      • requested_slot: null
    • action: action_submit

    • intent: decision

      entities:

      • decision_type: Accept
    • action: utter_sym

can any one help me on this query? thanks.

@subbu_y80, you define action_submit to do something after all your slots are filled. But, even after your collect name, email, phone and gender, if you still want your assistant to handle something else, you can continue the same storie with more intents and actions.