Refactor host user security model, support static assets in modules and themes, module definition permissions and categories, paging control, remove SiteUsers, move seed data from script to site template for installation

This commit is contained in:
Shaun Walker
2019-09-19 16:33:48 -04:00
parent 35b9b9e89b
commit 83a212e7e3
61 changed files with 1000 additions and 979 deletions

View File

@ -0,0 +1,18 @@
namespace Oqtane.Models
{
public class PageTemplate
{
public string Name { get; set; }
public string Parent { get; set; }
public string Path { get; set; }
public int Order { get; set; }
public string Icon { get; set; }
public bool IsNavigation { get; set; }
public string PagePermissions { get; set; }
public string ModuleDefinitionName { get; set; }
public string ModulePermissions { get; set; }
public string Title { get; set; }
public string Pane { get; set; }
public string ContainerType { get; set; }
}
}