Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@BrianMRO
Last active April 28, 2022 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BrianMRO/ef2fb4d020d185610c8cf3ecce85b96d to your computer and use it in GitHub Desktop.
Save BrianMRO/ef2fb4d020d185610c8cf3ecce85b96d to your computer and use it in GitHub Desktop.
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