Webhooks

Last updated
Was this helpful?

Last updated
Was this helpful?
Was this helpful?
using Umbraco.Cms.Core.Composing;
using Umbraco.Forms.Core.Extensions;
internal sealed class TestComposer : IComposer
{
public void Compose(IUmbracoBuilder builder)
=> builder.WebhookEvents().AddForms(formsBuilder => formsBuilder.RemoveDefault());
}