install/upgrade refactoring to consolidate all use cases and implement IInstallable interface for modules, moved tenant creation to site management UI, fixed z-order issues in Blazor theme, enhanced JS Interop methods to support integrity and crossorigin
This commit is contained in:
		| @ -33,6 +33,7 @@ | ||||
|         public const string HostUser = "host"; | ||||
|  | ||||
|         public const string MasterTenant = "Master"; | ||||
|         public const string DefaultSite = "Default Site"; | ||||
|  | ||||
|         public const string AllUsersRole = "All Users"; | ||||
|         public const string HostRole = "Host Users"; | ||||
|  | ||||
| @ -2,11 +2,17 @@ | ||||
| { | ||||
|     public class InstallConfig | ||||
|     { | ||||
|         public string Alias { get; set; } | ||||
|         public string ConnectionString { get; set; } | ||||
|         public string HostUser { get; set; } | ||||
|         public string Password { get; set; } | ||||
|         public string Aliases { get; set; } | ||||
|         public string TenantName { get; set; } | ||||
|         public bool IsNewTenant { get; set; } | ||||
|         public string SiteName { get; set; } | ||||
|         public string HostPassword { get; set; } | ||||
|         public string HostEmail { get; set; } | ||||
|         public bool IsMaster { get; set; } | ||||
|         public string HostName { get; set; } | ||||
|         public string SiteTemplate { get; set; } | ||||
|         public string DefaultTheme { get; set; } | ||||
|         public string DefaultLayout { get; set; } | ||||
|         public string DefaultContainer { get; set; } | ||||
|     } | ||||
| } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Shaun Walker
					Shaun Walker