Refactor various classes to initialize lists with empty array syntax for improved clarity and consistency. Update Program.cs to remove unnecessary partial class declaration due to changes in ASP.NET Core 10. Enhance MediaPathResolver by making AssetRelativePath static for better accessibility. Adjust MediaClaimingBackgroundService to centralize idle polling logic. Improve SignalQueue's WaitAsync method for clearer intent in signal draining.
ci / build-backend (push) Successful in 1m46s
ci / build-frontend (push) Successful in 51s
ci / tests (push) Successful in 1m38s
ci / sonar (push) Successful in 5m1s

This commit is contained in:
Leonid Pershin
2026-07-26 23:36:55 +03:00
parent 59cc453026
commit 940b622c03
18 changed files with 34 additions and 23 deletions
@@ -10,7 +10,7 @@ namespace TeleWave.Domain.Programming;
/// </summary>
public class ScheduleTemplate
{
private readonly List<GridLayer> _layers = new();
private readonly List<GridLayer> _layers = [];
public Guid Id { get; private set; }
public Guid ChannelId { get; private set; }