Skip to content

Instantly share code, notes, and snippets.

@BrianMRO
Last active April 28, 2022 16:24
Embed
What would you like to do?
IsAutoRun
.WithFlowStates(states =>
{
states
.Update<State.approved>(flowState => flowState
.WithActions(actions =>
{
actions.Update(g => g.pushInventoryID, a => a.IsAutoAction(conditions.MyCondition));
}));
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment