I have a controller for say users where I sign up my users. Do I really have to break up the steps of the sign up as below and do they all asynchronously seperately or is one big asynchronous call ok? Each step is kinda dependent on the previous.
- validate user
- create user
- create group
- add user to group
- login the user
- redirect the user.
Please help me understand.