0
start{
          on('next'){.... }.to "connectusers" 
     }
  connectusers { 
                   on("next").to "congrats" 
     } 
  congrats()

this flow doesn't work but if I run each step alone it's ok Work:

start{
        on('next'){.... }.to "connectusers"
      }
 connectusers {}

also work...

 start{
        on('next'){.... }.to "congrats" 
      }
 congrats()

where I did wrong?

Abhinav Singh Maurya
  • 3,313
  • 8
  • 33
  • 51
  • Please explain "does not work". Errors? Exception? Please add some more verbose description of the problems you see to the question. – cfrick Nov 30 '15 at 10:55
  • not pass to the next level. It end the action correctly but don't go to the next step. – Yifat Biezuner Dec 01 '15 at 09:25

0 Answers0