Move some flow activities to the Branching category

This commit is contained in:
Sipke Schoorstra 2023-06-24 13:15:11 +02:00
parent 31ef995c4a
commit 05680edb35
3 changed files with 3 additions and 3 deletions

View file

@ -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
{

View file

@ -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
{

View file

@ -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
{