add channel slugs (#2823)

* add channel slugs

* safety
This commit is contained in:
Jason Dove
2026-02-14 19:57:35 -06:00
committed by GitHub
parent 3dbde17f68
commit c6d538e012
25 changed files with 14202 additions and 12 deletions
@@ -13,6 +13,7 @@ public class ChannelEditViewModel
public string Categories { get; set; }
public string Number { get; set; }
public int FFmpegProfileId { get; set; }
public double? SlugSeconds { get; set; }
public ChannelStreamSelectorMode StreamSelectorMode { get; set; }
public string StreamSelector { get; set; }
public string PreferredAudioLanguageCode { get; set; }
@@ -59,6 +60,7 @@ public class ChannelEditViewModel
Group,
Categories,
FFmpegProfileId,
SlugSeconds,
string.IsNullOrWhiteSpace(ExternalLogoUrl)
? Logo
: new ArtworkContentTypeModel(ExternalLogoUrl, string.Empty),
@@ -90,6 +92,7 @@ public class ChannelEditViewModel
Group,
Categories,
FFmpegProfileId,
SlugSeconds,
string.IsNullOrWhiteSpace(ExternalLogoUrl)
? Logo
: new ArtworkContentTypeModel(ExternalLogoUrl, string.Empty),