Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RemoveDefault() extension method to fluent API for CMS webhook events #15424

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ namespace Umbraco.Cms.Core.DependencyInjection;
/// </summary>
public static class WebhookEventCollectionBuilderCmsExtensions
{
private static readonly Type[] _defaultTypes =
[
typeof(ContentDeletedWebhookEvent),
typeof(ContentPublishedWebhookEvent),
typeof(ContentUnpublishedWebhookEvent),
typeof(MediaDeletedWebhookEvent),
typeof(MediaSavedWebhookEvent),
];

/// <summary>
/// Adds the default webhook events.
/// </summary>
Expand All @@ -21,12 +30,24 @@ public static class WebhookEventCollectionBuilderCmsExtensions
/// </remarks>
public static WebhookEventCollectionBuilderCms AddDefault(this WebhookEventCollectionBuilderCms builder)
{
builder.Builder
.Add<ContentDeletedWebhookEvent>()
.Add<ContentPublishedWebhookEvent>()
.Add<ContentUnpublishedWebhookEvent>()
.Add<MediaDeletedWebhookEvent>()
.Add<MediaSavedWebhookEvent>();
builder.Builder.Add(_defaultTypes);

return builder;
}

/// <summary>
/// Removes the default webhook events.
/// </summary>
/// <param name="builder">The builder.</param>
/// <returns>
/// The builder.
/// </returns>
public static WebhookEventCollectionBuilderCms RemoveDefault(this WebhookEventCollectionBuilderCms builder)
{
foreach (Type type in _defaultTypes)
{
builder.Builder.Remove(type);
}

return builder;
}
Expand Down