Skip to content

Commit

Permalink
disable suppression-
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJump committed Jun 29, 2023
1 parent 6118499 commit 03cd871
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion uSync.BackOffice/Configuration/uSyncSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,15 @@ public class uSyncSettings
/// turns of use of the Notifications.Supress method, so notifications
/// fire after every item is imported.
/// </summary>
/// <remarks>
/// 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.
/// </remarks>
[DefaultValue("false")]
public bool DisableNotificationSuppression { get; set; } = false;
public bool DisableNotificationSuppression { get; set; } = true;

}

Expand Down

0 comments on commit 03cd871

Please sign in to comment.