Implement BumperEndpoints and remove deprecated bumper-related functionality
Added new BumperEndpoints to the API for managing bumper templates and variants, enhancing the channel management capabilities. Removed outdated bumper-related commands and handlers from the application, streamlining the codebase and improving maintainability. Updated ChannelEndpoints to reflect these changes and ensure proper routing for the new endpoints.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
namespace TeleWave.Domain.Broadcast;
|
||||
|
||||
/// <summary>
|
||||
/// Что за картинка под текстом заставки. Раньше постер подставлялся молча и только в режиме
|
||||
/// «Сейчас/Далее»; при свободных строках такой связи взяться неоткуда, поэтому источник задаётся явно.
|
||||
/// </summary>
|
||||
public enum BumperBackground
|
||||
{
|
||||
/// <summary>Фон блока: загруженная картинка, а если её нет — анимированный градиент палитры.</summary>
|
||||
Template = 0,
|
||||
|
||||
/// <summary>Постер следующего шоу (размытый и затемнённый).</summary>
|
||||
NextPoster = 1,
|
||||
|
||||
/// <summary>Постер предыдущего шоу.</summary>
|
||||
NowPoster = 2,
|
||||
}
|
||||
Reference in New Issue
Block a user