-
Notifications
You must be signed in to change notification settings - Fork 105
Consume Input in Authflow #4383
Copy link
Copy link
Open
Labels
Description
Currently when we feed input to a authflow, we feed the same input indefinitely until the authflow no longer react. It is a problem when two consecutive steps consume the same input, for example, two consecutive step of identification: email in a signup flow. The second step will consume the same input, causing a duplicated identity error.
Conceptually, processing an input should be like consuming tokens in a parser. The consumed token will not be passed to the next parser.
Reactions are currently unavailable