From 03cd871d03f53c95c721364160f7beb3052f1577 Mon Sep 17 00:00:00 2001 From: Kevin Jump Date: Thu, 29 Jun 2023 14:01:08 +0100 Subject: [PATCH] disable suppression- --- uSync.BackOffice/Configuration/uSyncSettings.cs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/uSync.BackOffice/Configuration/uSyncSettings.cs b/uSync.BackOffice/Configuration/uSyncSettings.cs index 1d8c1ce7..2ad47d52 100644 --- a/uSync.BackOffice/Configuration/uSyncSettings.cs +++ b/uSync.BackOffice/Configuration/uSyncSettings.cs @@ -149,8 +149,15 @@ public class uSyncSettings /// turns of use of the Notifications.Supress method, so notifications /// fire after every item is imported. /// + /// + /// I am not sure this does what i think it does, it doesn't suppress + /// then fire at the end , it just suppresses them all. + /// + /// until we have had time to look at this , we will leave this as + /// disabled by default so all notification messages fire. + /// [DefaultValue("false")] - public bool DisableNotificationSuppression { get; set; } = false; + public bool DisableNotificationSuppression { get; set; } = true; }