2023-02-20 11:08:22 +01:00
|
|
|
|
namespace Umbraco.Cms.Core.Services.OperationStatus;
|
|
|
|
|
|
|
|
|
|
|
|
public enum ContentEditingOperationStatus
|
|
|
|
|
|
{
|
|
|
|
|
|
Success,
|
|
|
|
|
|
CancelledByNotification,
|
|
|
|
|
|
ContentTypeNotFound,
|
|
|
|
|
|
ContentTypeCultureVarianceMismatch,
|
|
|
|
|
|
NotFound,
|
|
|
|
|
|
ParentNotFound,
|
|
|
|
|
|
NotAllowed,
|
|
|
|
|
|
TemplateNotFound,
|
2023-02-23 07:30:16 +01:00
|
|
|
|
TemplateNotAllowed,
|
2023-02-20 11:08:22 +01:00
|
|
|
|
PropertyTypeNotFound,
|
2023-02-23 07:30:16 +01:00
|
|
|
|
Unknown
|
2023-02-20 11:08:22 +01:00
|
|
|
|
}
|