Removes booting.aspx and creates embedded html pages for booting and failed (if those are ever seen ), renames some classes and namespaces, removes old cdf bundle classes
This commit is contained in:
26
src/Umbraco.Web/Models/ContentEditing/NotificationStyle.cs
Normal file
26
src/Umbraco.Web/Models/ContentEditing/NotificationStyle.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
namespace Umbraco.Web.Models.ContentEditing
|
||||
{
|
||||
public enum NotificationStyle
|
||||
{
|
||||
/// <summary>
|
||||
/// Save icon
|
||||
/// </summary>
|
||||
Save = 0,
|
||||
/// <summary>
|
||||
/// Info icon
|
||||
/// </summary>
|
||||
Info = 1,
|
||||
/// <summary>
|
||||
/// Error icon
|
||||
/// </summary>
|
||||
Error = 2,
|
||||
/// <summary>
|
||||
/// Success icon
|
||||
/// </summary>
|
||||
Success = 3,
|
||||
/// <summary>
|
||||
/// Warning icon
|
||||
/// </summary>
|
||||
Warning = 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user