feat(api): add playout REST endpoints
Build ErsatzTV Image / Build & test (.NET) (pull_request) Successful in 3m34s
Build ErsatzTV Image / EF migration integrity (SQLite + MySql) (pull_request) Successful in 4m48s
Build ErsatzTV Image / Build & push image (amd64) (pull_request) Has been skipped

fixes #37
This commit is contained in:
2026-06-29 20:31:18 +02:00
parent 4f8b3042db
commit b53b06c615
11 changed files with 905 additions and 16 deletions
@@ -0,0 +1,8 @@
using ErsatzTV.Application.Playouts;
namespace ErsatzTV.Controllers.Api.Requests;
public record CreatePlayoutRequest(int ChannelId, int ProgramScheduleId)
{
public CreateClassicPlayout ToCommand() => new(ChannelId, ProgramScheduleId);
}