Files
ontime/server/data/eventsDefinition.js
T
cv f38823e077 bugfixes: delay
- mismatch of event definition caused duration not to apply when event was delayed
- delays now have revision
2021-05-15 23:36:06 +02:00

24 lines
305 B
JavaScript

const event = {
title: '',
subtitle: '',
presenter: '',
note: '',
timeStart: 0,
timeEnd: 0,
isPublic: false,
type: 'event',
revision: 0,
};
const delay = {
duration: 0,
type: 'delay',
revision: 0,
};
const block = {
type: 'block',
};
module.exports = { event, delay, block };