mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-07 15:29:10 +00:00
feat: count to group completion
This commit is contained in:
@@ -44,6 +44,8 @@ export type OntimeGroup = OntimeBaseEvent & {
|
||||
note: string;
|
||||
entries: EntryId[];
|
||||
targetDuration: MaybeNumber;
|
||||
useGroupTimer: boolean;
|
||||
timerType: TimerType;
|
||||
colour: string;
|
||||
custom: EntryCustomFields;
|
||||
// !==== RUNTIME METADATA ====! //
|
||||
|
||||
@@ -17,6 +17,7 @@ export const runtimeStorePlaceholder: Readonly<RuntimeStore> = {
|
||||
secondaryTimer: null, // change on every update
|
||||
startedAt: null, // change can only be initiated by user
|
||||
},
|
||||
groupTimer: null,
|
||||
message: {
|
||||
timer: {
|
||||
text: '',
|
||||
|
||||
@@ -9,6 +9,7 @@ export type RuntimeStore = {
|
||||
// timer data
|
||||
clock: number;
|
||||
timer: TimerState;
|
||||
groupTimer: TimerState | null;
|
||||
|
||||
// messages service
|
||||
message: MessageState;
|
||||
|
||||
Reference in New Issue
Block a user