Merge remote-tracking branch 'upstream/dev' into dev
This commit is contained in:
@ -18,6 +18,7 @@ namespace Oqtane.Models
|
||||
public int? PwaAppIconFileId { get; set; }
|
||||
public int? PwaSplashIconFileId { get; set; }
|
||||
public bool AllowRegistration { get; set; }
|
||||
public string SiteGuid { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
public DateTime CreatedOn { get; set; }
|
||||
|
@ -1,4 +1,4 @@
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Oqtane.Models
|
||||
@ -14,6 +14,7 @@ namespace Oqtane.Models
|
||||
Contact = "";
|
||||
License = "";
|
||||
Dependencies = "";
|
||||
Template = "";
|
||||
}
|
||||
|
||||
public string ThemeName { get; set; }
|
||||
@ -28,6 +29,7 @@ namespace Oqtane.Models
|
||||
public List<ThemeControl> Themes { get; set; }
|
||||
public List<ThemeControl> Layouts { get; set; }
|
||||
public List<ThemeControl> Containers { get; set; }
|
||||
public string Template { get; set; }
|
||||
|
||||
//[Obsolete("This property is obsolete. Use Themes instead.", false)]
|
||||
public string ThemeControls { get; set; }
|
||||
|
@ -13,7 +13,7 @@ namespace Oqtane.Shared {
|
||||
|
||||
public const string DefaultTheme = "Oqtane.Themes.OqtaneTheme.Default, Oqtane.Client";
|
||||
public const string DefaultLayout = "Oqtane.Themes.OqtaneTheme.SinglePane, Oqtane.Client";
|
||||
public const string DefaultContainer = "Oqtane.Themes.OqtaneTheme.Container, Oqtane.Client";
|
||||
public const string DefaultContainer = "Oqtane.Themes.OqtaneTheme.DefaultTitle, Oqtane.Client";
|
||||
public const string DefaultAdminContainer = "Oqtane.Themes.AdminContainer, Oqtane.Client";
|
||||
|
||||
public const string ActionToken = "{Action}";
|
||||
|
@ -1,9 +1,5 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Oqtane.Shared {
|
||||
public class PaneNames {
|
||||
public const string Admin = "Admin";
|
||||
public const string Admin = "Content";
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user