diff --git a/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.CoreServices.cs b/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.CoreServices.cs index 0e4e6fdb42..56fdface93 100644 --- a/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.CoreServices.cs +++ b/src/Umbraco.Infrastructure/DependencyInjection/UmbracoBuilder.CoreServices.cs @@ -352,6 +352,9 @@ public static partial class UmbracoBuilderExtensions .AddNotificationHandler() .AddNotificationHandler() .AddNotificationHandler() + .AddNotificationHandler() + .AddNotificationHandler() + .AddNotificationHandler() .AddNotificationHandler() .AddNotificationHandler() .AddNotificationHandler() diff --git a/src/Umbraco.Infrastructure/PropertyEditors/RichTextPropertyNotificationHandler.cs b/src/Umbraco.Infrastructure/PropertyEditors/RichTextPropertyNotificationHandler.cs new file mode 100644 index 0000000000..5f07c8342d --- /dev/null +++ b/src/Umbraco.Infrastructure/PropertyEditors/RichTextPropertyNotificationHandler.cs @@ -0,0 +1,20 @@ +// Copyright (c) Umbraco. +// See LICENSE for more details. + +using Microsoft.Extensions.Logging; +using Umbraco.Cms.Core.Models.Blocks; + +namespace Umbraco.Cms.Core.PropertyEditors; + +/// +/// A handler for Rich Text editors used to bind to notifications. +/// +public class RichTextPropertyNotificationHandler : BlockEditorPropertyNotificationHandlerBase +{ + public RichTextPropertyNotificationHandler(ILogger logger) + : base(logger) + { + } + + protected override string EditorAlias => Constants.PropertyEditors.Aliases.RichText; +}