Remove public event feature (#1645)

This commit is contained in:
Alex Christoffer Rasmussen
2025-06-19 18:07:42 +02:00
committed by Carlos Valente
parent 0649678dca
commit 08d9e24871
99 changed files with 173 additions and 1129 deletions
@@ -48,7 +48,6 @@ export type OntimeEvent = OntimeBaseEvent & {
timeStart: number;
timeEnd: number;
duration: number;
isPublic: boolean;
skip: boolean;
colour: string;
timeWarning: number;
@@ -1,8 +1,6 @@
export type ProjectData = {
title: string;
description: string;
publicUrl: string;
publicInfo: string;
backstageUrl: string;
backstageInfo: string;
projectLogo: string | null;
@@ -46,8 +46,6 @@ export const runtimeStorePlaceholder: Readonly<RuntimeStore> = {
},
eventNow: null,
eventNext: null,
publicEventNow: null,
publicEventNext: null,
auxtimer1: {
current: 0,
direction: SimpleDirection.CountUp,
@@ -18,9 +18,7 @@ export type RuntimeStore = {
runtime: Runtime;
currentBlock: CurrentBlockState;
eventNow: OntimeEvent | null;
publicEventNow: OntimeEvent | null;
eventNext: OntimeEvent | null;
publicEventNext: OntimeEvent | null;
// extra timers
auxtimer1: SimpleTimerState;