diff --git a/16/umbraco-cms/.gitbook.yaml b/16/umbraco-cms/.gitbook.yaml index 07bfc7d845a..fbae79d113e 100644 --- a/16/umbraco-cms/.gitbook.yaml +++ b/16/umbraco-cms/.gitbook.yaml @@ -113,6 +113,7 @@ redirects: reference/configuration/runtimeminificationsettings: reference/configuration/README.md reference/routing/umbraco-api-controllers/authorization: reference/routing/umbraco-api-controllers/README.md reference/routing/umbraco-api-controllers/routing: reference/routing/umbraco-api-controllers/README.md + reference/notifications/sendingallowedchildrennotifications: reference/content-type-filters.md extending/property-editors/package-manifest: customizing/umbraco-package.md fundamentals/backoffice/infinite-editing: fundamentals/backoffice/sidebar.md extending/backoffice-tours: extending/build-on-umbraco-functionality.md diff --git a/16/umbraco-cms/SUMMARY.md b/16/umbraco-cms/SUMMARY.md index 418a256d179..871cfa15ddc 100644 --- a/16/umbraco-cms/SUMMARY.md +++ b/16/umbraco-cms/SUMMARY.md @@ -369,7 +369,6 @@ * [Determining if an entity is new](reference/notifications/determining-new-entity.md) * [MediaService Notifications Example](reference/notifications/mediaservice-notifications.md) * [MemberService Notifications Example](reference/notifications/memberservice-notifications.md) - * [Sending Allowed Children Notification](reference/notifications/sendingallowedchildrennotifications.md) * [Umbraco Application Lifetime Notifications](reference/notifications/umbracoapplicationlifetime-notifications.md) * [EditorModel Notifications](reference/notifications/editormodel-notifications/README.md) * [Hot vs. cold restarts](reference/notifications/hot-vs-cold-restarts.md) diff --git a/16/umbraco-cms/reference/content-type-filters.md b/16/umbraco-cms/reference/content-type-filters.md index cbfa5fc4dfb..b10b8f3dad7 100644 --- a/16/umbraco-cms/reference/content-type-filters.md +++ b/16/umbraco-cms/reference/content-type-filters.md @@ -1,6 +1,9 @@ --- description: Describes how to use Content Type Filters to restrict the allowed content options available to editors. --- +{% hint style="info" %} +The use cases supported here are similar to those where the `SendingAllowedChildrenNotification` would be used in Umbraco 13 or earlier. +{% endhint %} # Filtering Allowed Content Types @@ -10,10 +13,6 @@ Implementors and package creators can add additional logic to determine which op This is possible using Content Type Filters. -{% hint style="info" %} -The use cases supported here are similar to those where the `SendingAllowedChildrenNotification` would be used in Umbraco 13 or earlier. -{% endhint %} - ## Implementing a Content Type Filter To create a Content Type Filter you use a class that implements the `IContentTypeFilter` interface (found in the `Umbraco.Cms.Core.Services.Filters` namespace). diff --git a/16/umbraco-cms/reference/notifications/README.md b/16/umbraco-cms/reference/notifications/README.md index b551f10a97d..b4eae548857 100644 --- a/16/umbraco-cms/reference/notifications/README.md +++ b/16/umbraco-cms/reference/notifications/README.md @@ -285,5 +285,4 @@ Below you can find some articles with some examples using Notifications. * [Hot vs. cold restarts](hot-vs-cold-restarts.md) * [MediaService Notifications](mediaservice-notifications.md) * [MemberService Notifications](memberservice-notifications.md) -* [Sending Allowed Children Notification](sendingallowedchildrennotifications.md) * [Umbraco Application Lifetime Notifications](umbracoapplicationlifetime-notifications.md) diff --git a/16/umbraco-cms/reference/notifications/sendingallowedchildrennotifications.md b/16/umbraco-cms/reference/notifications/sendingallowedchildrennotifications.md deleted file mode 100644 index 8603360e63a..00000000000 --- a/16/umbraco-cms/reference/notifications/sendingallowedchildrennotifications.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -description: Example of how to use a SendingAllowedChildren Notification ---- - -# Sending Allowed Children Notification - -The `SendingAllowedChildrenNotification` is no longer available in Umbraco 15. - -Please see [content type filters](../content-type-filters.md) as the supported alternative for use cases that previously relied on this notification. \ No newline at end of file