* add initial models * migrations * edit break content mode * add and remove break content from ui * use autocompletes in deco editor * save break content to db * allow break content playlists * refactor default filler build * fix slow startup * start to implement adding break content * use clone; try to fix block breaks * fix updating history * use consistent removebefore values * cleanup logging * only allow playlist break content * update changelog
10 lines
170 B
C#
10 lines
170 B
C#
namespace ErsatzTV.Core.Domain.Scheduling;
|
|
|
|
public enum DecoBreakPlacement
|
|
{
|
|
BlockStart = 0,
|
|
BlockFinish = 1,
|
|
BetweenBlockItems = 2,
|
|
ChapterMarkers = 3
|
|
}
|