This commit is contained in:
Paul Schneider 2026-06-12 12:47:04 +01:00
commit bdc974b29b

View file

@ -5,35 +5,35 @@ public static class LicenceModelesSeed
public static IEnumerable<LicenceTemplate> GetSeedData() => new[] public static IEnumerable<LicenceTemplate> GetSeedData() => new[]
{ {
new LicenceTemplate { new LicenceTemplate {
Id = 1, Nom = "CC0 1.0", IsFreeAndOpen = true, Id = 1, Nom = "CC0 1.0", EstLibre = true,
PermetUsageCommercial = true, PermetModification = true, PermetUsageCommercial = true, PermetModification = true,
ExigeAttribution = false, ExigePartageAIdentique = false, ExigeAttribution = false, ExigePartageAIdentique = false,
Texte = "https://creativecommons.org/publicdomain/zero/1.0/", Texte = "https://creativecommons.org/publicdomain/zero/1.0/",
AdminValidated = true AdminValidated = true
}, },
new LicenceTemplate { new LicenceTemplate {
Id = 2, Nom = "CC BY 4.0", IsFreeAndOpen = true, Id = 2, Nom = "CC BY 4.0", EstLibre = true,
PermetUsageCommercial = true, PermetModification = true, PermetUsageCommercial = true, PermetModification = true,
ExigeAttribution = true, ExigePartageAIdentique = false, ExigeAttribution = true, ExigePartageAIdentique = false,
Texte = "https://creativecommons.org/licenses/by/4.0/", Texte = "https://creativecommons.org/licenses/by/4.0/",
AdminValidated = true AdminValidated = true
}, },
new LicenceTemplate { new LicenceTemplate {
Id = 3, Nom = "CC BY-SA 4.0", IsFreeAndOpen = true, Id = 3, Nom = "CC BY-SA 4.0", EstLibre = true,
PermetUsageCommercial = true, PermetModification = true, PermetUsageCommercial = true, PermetModification = true,
ExigeAttribution = true, ExigePartageAIdentique = true, ExigeAttribution = true, ExigePartageAIdentique = true,
Texte = "https://creativecommons.org/licenses/by-sa/4.0/", Texte = "https://creativecommons.org/licenses/by-sa/4.0/",
AdminValidated = true AdminValidated = true
}, },
new LicenceTemplate { new LicenceTemplate {
Id = 4, Nom = "CC BY-NC 4.0", IsFreeAndOpen = false, Id = 4, Nom = "CC BY-NC 4.0", EstLibre = false,
PermetUsageCommercial = false, PermetModification = true, PermetUsageCommercial = false, PermetModification = true,
ExigeAttribution = true, ExigePartageAIdentique = false, ExigeAttribution = true, ExigePartageAIdentique = false,
Texte = "https://creativecommons.org/licenses/by-nc/4.0/", Texte = "https://creativecommons.org/licenses/by-nc/4.0/",
AdminValidated = true AdminValidated = true
}, },
new LicenceTemplate { new LicenceTemplate {
Id = 5, Nom = "CC BY-NC-SA 4.0", IsFreeAndOpen = false, Id = 5, Nom = "CC BY-NC-SA 4.0", EstLibre = false,
PermetUsageCommercial = false, PermetModification = true, PermetUsageCommercial = false, PermetModification = true,
ExigeAttribution = true, ExigePartageAIdentique = true, ExigeAttribution = true, ExigePartageAIdentique = true,
Texte = "https://creativecommons.org/licenses/by-nc-sa/4.0/", Texte = "https://creativecommons.org/licenses/by-nc-sa/4.0/",