Corrected property names and structure used in JSON schema generation for configuration of default data to install. (#17946)

This commit is contained in:
Andy Butland
2025-01-13 11:05:51 +01:00
committed by GitHub
parent 4a54215fa1
commit f2410f376e

View File

@@ -75,7 +75,7 @@ internal class UmbracoCmsSchema
public HelpPageSettings HelpPage { get; set; } = null!;
public InstallDefaultDataSettings DefaultDataCreation { get; set; } = null!;
public InstallDefaultDataNamedOptions InstallDefaultData { get; set; } = null!;
public DataTypesSettings DataTypes { get; set; } = null!;
@@ -83,4 +83,15 @@ internal class UmbracoCmsSchema
public WebhookSettings Webhook { get; set; } = null!;
}
public class InstallDefaultDataNamedOptions
{
public InstallDefaultDataSettings Languages { get; set; } = null!;
public InstallDefaultDataSettings DataTypes { get; set; } = null!;
public InstallDefaultDataSettings MediaTypes { get; set; } = null!;
public InstallDefaultDataSettings MemberTypes { get; set; } = null!;
}
}