fix(api): harden billing/blog validation and update rc14 changelog

This commit is contained in:
Paul Schneider 2026-09-06 19:16:41 +01:00
commit ad5e9090ee
13 changed files with 168 additions and 53 deletions

View file

@ -108,6 +108,7 @@ namespace Yavsc.Models
;
builder.Entity<Activity>().Property(a => a.ParentCode).IsRequired(false);
builder.Entity<Activity>().Property(a => a.Description).IsRequired(false);
builder.Entity<Country>().HasKey(c => c.Code);
builder.Entity<PerformerCodeInputValidation>()

View file

@ -37,7 +37,7 @@ namespace Yavsc.Models.Workflow
public virtual List<Activity> Children { get; set; }
[Display(Name = "Description")]
public string Description { get; set; }
public string? Description { get; set; }
[Display(Name = "Photo")]
public string? Photo { get; set; }