folder restructure

This commit is contained in:
cv
2021-05-28 13:16:34 +02:00
parent 1491fbbb97
commit aa53f2c9cf
18 changed files with 17 additions and 71 deletions
-16
View File
@@ -1,16 +0,0 @@
export const dbModel = {
events: [],
event: {
title: '',
url: '',
publicInfo: '',
backstageInfo: '',
},
settings: {
app: 'ontime',
version: 1,
osc_enabled: false,
osc_port: 8888,
lock: false,
},
};
-57
View File
@@ -1,57 +0,0 @@
[
{
"id":"xxxxx0",
"duration": 300000,
"type": "delay"
},
{
"id":"xxxxx1",
"title": "Is the internet a fad?",
"subtitle": "It is",
"presenter": "Carlos Valente",
"timeStart": 32400000,
"timeEnd": 34200000,
"type": "event"
},
{
"id":"xxxxx2",
"duration": 1500000,
"type": "delay"
},
{
"id":"xxxxx3",
"title": "Is reddit a dictatorship?",
"subtitle": "It is",
"presenter": "Carlos Valente",
"timeStart": 34200000,
"timeEnd": 36000000,
"type": "event"
},
{
"id":"xxxxx4",
"title": "Out of words",
"subtitle": "",
"presenter": "Carlos Valente",
"timeStart": 36000000,
"timeEnd": 39600000,
"type": "event"
},
{
"id":"xxxxx5",
"title": "Really",
"subtitle": "",
"presenter": "Carlos Valente",
"timeStart": 39600000,
"timeEnd": 41400000,
"type": "event"
},
{
"id":"xxxxx6",
"title": "...",
"subtitle": "",
"presenter": "Carlos Valente",
"timeStart": null,
"timeEnd": null,
"type": "event"
}
]
-21
View File
@@ -1,21 +0,0 @@
export const event = {
title: '',
subtitle: '',
presenter: '',
note: '',
timeStart: 0,
timeEnd: 0,
isPublic: false,
type: 'event',
revision: 0,
};
export const delay = {
duration: 0,
type: 'delay',
revision: 0,
};
export const block = {
type: 'block',
};