mirror of https://github.com/ErsatzTV/ErsatzTV.git
Browse Source
* show reset playout build failures * fix scheduling trakt list playlists that contain showspull/2561/head
8 changed files with 75 additions and 9 deletions
@ -1,5 +1,7 @@
@@ -1,5 +1,7 @@
|
||||
using ErsatzTV.Application.Scheduling; |
||||
using ErsatzTV.Core; |
||||
|
||||
namespace ErsatzTV.Application.MediaCollections; |
||||
|
||||
public record PreviewPlaylistPlayout(ReplacePlaylistItems Data) : IRequest<List<PlayoutItemPreviewViewModel>>; |
||||
public record PreviewPlaylistPlayout(ReplacePlaylistItems Data) |
||||
: IRequest<Either<BaseError, List<PlayoutItemPreviewViewModel>>>; |
||||
|
||||
@ -0,0 +1,3 @@
@@ -0,0 +1,3 @@
|
||||
namespace ErsatzTV.Core.Errors; |
||||
|
||||
public class SchedulingLoopEncountered() : BaseError("Scheduling loop encountered"); |
||||
Loading…
Reference in new issue