Files
Umbraco-CMS/src/Umbraco.Core/Constants-Webhooks.cs

19 lines
609 B
C#
Raw Normal View History

using Umbraco.Cms.Core.Webhooks;
namespace Umbraco.Cms.Core;
public static partial class Constants
{
public static class Webhooks
{
/// <summary>
/// Gets the default webhook payload type.
/// </summary>
/// <remarks>
/// Currently, the default payload type is <see cref="WebhookPayloadType.Legacy"/> for backward compatibility until Umbraco 17.
/// From Umbraco 17 this will be changed to <see cref="WebhookPayloadType.Minimal"/>.
/// </remarks>
public const WebhookPayloadType DefaultPayloadType = WebhookPayloadType.Legacy;
}
}