File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
src/modules/Elsa.Workflows.Management Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ public override void Apply()
239
239
Services
240
240
. AddNotificationHandler < DeleteWorkflowInstances > ( )
241
241
. AddNotificationHandler < RefreshActivityRegistry > ( )
242
- . AddNotificationHandler < UpdateConsumingWorkflows > ( )
242
+ . AddNotificationHandler < UpdateReferencingWorkflows > ( )
243
243
. AddNotificationHandler < ValidateWorkflow > ( )
244
244
;
245
245
Original file line number Diff line number Diff line change 1
1
using Elsa . Extensions ;
2
2
using Elsa . Mediator . Contracts ;
3
3
using Elsa . Workflows . Management . Notifications ;
4
+ using JetBrains . Annotations ;
4
5
5
6
namespace Elsa . Workflows . Management . Handlers . Notifications ;
6
7
7
8
/// <summary>
8
- /// Updates consuming workflows when a workflow definition is published.
9
+ /// Updates referencing workflows when a workflow definition is published.
9
10
/// </summary>
10
- public class UpdateConsumingWorkflows ( IWorkflowReferenceUpdater workflowReferenceUpdater ) : INotificationHandler < WorkflowDefinitionPublished >
11
+ [ UsedImplicitly ]
12
+ public class UpdateReferencingWorkflows ( IWorkflowReferenceUpdater workflowReferenceUpdater ) : INotificationHandler < WorkflowDefinitionPublished >
11
13
{
12
14
/// <inheritdoc />
13
15
public async Task HandleAsync ( WorkflowDefinitionPublished notification , CancellationToken cancellationToken )
You can’t perform that action at this time.
0 commit comments