Skip to content

Instantly share code, notes, and snippets.

@BrianMRO
Last active February 28, 2022 21:23
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/22e8ae490fa66d90de6cb1e1be52b79e to your computer and use it in GitHub Desktop.
Save BrianMRO/22e8ae490fa66d90de6cb1e1be52b79e to your computer and use it in GitHub Desktop.
Workflow - Add Action to Menu
#region Add Actions to the Menus
screen
.WithActions(action =>
{
action.Add(removeHold);
action.Add(putOnHold);
action.Add(g => g.schedule, a => a
.WithCategory(processingCategory)
);
});
#endregion
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment