Skip to content

Commit

Permalink
fixes #6496: mark TargetNotifiers as virual in NotificationInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
ismcagdas committed Aug 12, 2022
1 parent 45b8ec7 commit f6b94d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Abp/Notifications/NotificationInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public class NotificationInfo : CreationAuditedEntity<Guid>
/// <summary>
/// which realtime notifiers should handle this notification
/// </summary>
public string TargetNotifiers { get; set; }
public virtual string TargetNotifiers { get; set; }

[NotMapped]
public List<string> TargetNotifiersList => TargetNotifiers.IsNullOrWhiteSpace()
Expand Down

0 comments on commit f6b94d5

Please sign in to comment.