Skip to content

Commit 89c28a8

Browse files
yuqingyangabrilgzz
authored andcommitted
Add no data notification type in Notifier
1 parent cbe9141 commit 89c28a8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Service/GroupMembershipManagement/Hosts/Notifier/Function/Orchestrator/OrchestratorFunction.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ await context.CallActivityAsync(nameof(LoggerFunction),
8585
case nameof(NotificationMessageType.SourceNotExistNotification):
8686
message.SubjectTemplate = NotificationConstants.DisabledNotificationSubject;
8787
message.ContentTemplate = NotificationConstants.SyncDisabledNoGroupContent;
88+
89+
case nameof(NotificationMessageType.NoDataNotification):
90+
message.SubjectTemplate = NotificationConstants.NoDataSubject;
91+
message.ContentTemplate = NotificationConstants.NoDataContent;
8892
await context.CallActivityAsync(nameof(SendNotification), message);
8993
break;
9094

0 commit comments

Comments
 (0)