* Output notification handler messages as a header * Make the notification contract public * Moved the Notification type and added it to swagger schema * Update swagger docs --------- Co-authored-by: Bjarke Berg <mail@bergmania.dk>
23 lines
591 B
C#
23 lines
591 B
C#
namespace Umbraco.Cms.Core;
|
|
|
|
public static partial class Constants
|
|
{
|
|
public static class Headers
|
|
{
|
|
/// <summary>
|
|
/// Location header name.
|
|
/// </summary>
|
|
public const string Location = "Location";
|
|
|
|
/// <summary>
|
|
/// Generated resource identifier header name.
|
|
/// </summary>
|
|
public const string GeneratedResource = "Umb-Generated-Resource";
|
|
|
|
/// <summary>
|
|
/// Response notifications header name.
|
|
/// </summary>
|
|
public const string Notifications = "Umb-Notifications";
|
|
}
|
|
}
|