Move some flow activities to the Branching category
This commit is contained in:
parent
31ef995c4a
commit
05680edb35
|
|
@ -14,7 +14,7 @@ namespace Elsa.Workflows.Core.Activities.Flowchart.Activities;
|
|||
/// Performs a boolean condition and returns an outcome based on the the result.
|
||||
/// </summary>
|
||||
[FlowNode("True", "False")]
|
||||
[Activity("Elsa", "Flow", "Evaluate a Boolean condition to determine which path to execute next.")]
|
||||
[Activity("Elsa", "Branching", "Evaluate a Boolean condition to determine which path to execute next.")]
|
||||
[PublicAPI]
|
||||
public class FlowDecision : Activity
|
||||
{
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ namespace Elsa.Workflows.Core.Activities.Flowchart.Activities;
|
|||
/// <summary>
|
||||
/// Merge multiple branches into a single branch of execution.
|
||||
/// </summary>
|
||||
[Activity("Elsa", "Flow", "Merge multiple branches into a single branch of execution.")]
|
||||
[Activity("Elsa", "Branching", "Merge multiple branches into a single branch of execution.")]
|
||||
[PublicAPI]
|
||||
public class FlowJoin : Activity, IJoinNode
|
||||
{
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ namespace Elsa.Workflows.Core.Activities.Flowchart.Activities;
|
|||
/// Evaluates the specified case conditions and schedules the one that evaluates to <code>true</code>.
|
||||
/// </summary>
|
||||
[FlowNode("Default")]
|
||||
[Activity("Elsa", "Flow", "Evaluate a set of case conditions and schedule the activity for a matching case.")]
|
||||
[Activity("Elsa", "Branching", "Evaluate a set of case conditions and schedule the activity for a matching case.")]
|
||||
[PublicAPI]
|
||||
public class FlowSwitch : Activity
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue