Update release notes and deploy workspace
This commit is contained in:
@@ -5,7 +5,7 @@ public sealed class Season
|
||||
public int Id { get; set; }
|
||||
public int Year { get; set; }
|
||||
public string Name { get; set; } = string.Empty;
|
||||
public string ShowStreamUrl { get; set; } = string.Empty;
|
||||
public bool IsDemo { get; set; }
|
||||
public bool IsCurrent { get; set; }
|
||||
public bool IsCommunityOnly { get; set; }
|
||||
public string CurrentPhase { get; set; } = string.Empty;
|
||||
@@ -17,6 +17,8 @@ public sealed class Season
|
||||
public DateOnly ReviewEndsAt { get; set; }
|
||||
public DateOnly ShowDate { get; set; }
|
||||
public TimeOnly ShowStartsAt { get; set; } = new(20, 0);
|
||||
public DateTimeOffset? WinnersPublishedAt { get; set; }
|
||||
public string? WinnersPublishedByTwitchId { get; set; }
|
||||
public string SubcategoryTemplatesJson { get; set; } = "[]";
|
||||
public string WorkflowRulesJson { get; set; } = "[]";
|
||||
public ICollection<Category> Categories { get; set; } = [];
|
||||
|
||||
@@ -20,6 +20,22 @@ public sealed class SiteSettings
|
||||
public string SponsorsContent { get; set; } = string.Empty;
|
||||
public string ShowactsUrl { get; set; } = string.Empty;
|
||||
public string ShowactsContent { get; set; } = string.Empty;
|
||||
public string StreamBannerEyebrow { get; set; } = "Das grosse Finale";
|
||||
public string StreamBannerTitle { get; set; } = "Award-Show Finale";
|
||||
public string StreamBannerText { get; set; } = string.Empty;
|
||||
public string StreamBannerLiveButtonLabel { get; set; } = "Jetzt live · Zum Stream";
|
||||
public string StreamBannerLiveButtonUrl { get; set; } = string.Empty;
|
||||
public string StreamBannerLockedButtonLabel { get; set; } = "Stream noch gesperrt";
|
||||
public bool StreamBannerUseCompletedContent { get; set; }
|
||||
public string StreamBannerCompletedEyebrow { get; set; } = "Danke fürs Mitfiebern";
|
||||
public string StreamBannerCompletedTitle { get; set; } = "Award-Show abgeschlossen";
|
||||
public string StreamBannerCompletedText { get; set; } = "Die grosse Award-Show ist vorbei. Danke an alle, die live dabei waren.";
|
||||
public string StreamBannerCompletedButtonLabel { get; set; } = "Highlights ansehen";
|
||||
public string StreamBannerCompletedButtonUrl { get; set; } = string.Empty;
|
||||
public string AwardsSectionTitle { get; set; } = string.Empty;
|
||||
public string AwardsSectionDescription { get; set; } = string.Empty;
|
||||
public string SubcategoriesSectionTitle { get; set; } = string.Empty;
|
||||
public string SubcategoriesSectionDescription { get; set; } = string.Empty;
|
||||
public string SocialLinksJson { get; set; } = "[]";
|
||||
public string FaqJson { get; set; } = "[]";
|
||||
public string RiskRulesJson { get; set; } = "[]";
|
||||
|
||||
Reference in New Issue
Block a user