Stream custom live channels using your own media
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
753 B

using ErsatzTV.Infrastructure.Data;
using ErsatzTV.Infrastructure.Extensions;
using Microsoft.EntityFrameworkCore;
namespace ErsatzTV.Application.Scheduling;
public class GetDecoTemplateByIdHandler(IDbContextFactory<TvContext> dbContextFactory)
: IRequestHandler<GetDecoTemplateById, Option<DecoTemplateViewModel>>
{
public async Task<Option<DecoTemplateViewModel>> Handle(
GetDecoTemplateById request,
CancellationToken cancellationToken)
{
await using TvContext dbContext = await dbContextFactory.CreateDbContextAsync(cancellationToken);
return await dbContext.DecoTemplates
.SelectOneAsync(b => b.Id, b => b.Id == request.DecoTemplateId)
.MapT(Mapper.ProjectToViewModel);
}
}