1
0
Fork 0
peertube/shared/models/videos/live/live-video-session.model.ts
Chocobozzz c8fa571f32
Clearer live session
Get the save replay setting when the session started to prevent
inconsistent behaviour when the setting changed before the session was
processed by the live ending job

Display more information about the potential session replay in live
modal information
2022-07-22 15:22:21 +02:00

19 lines
299 B
TypeScript

import { LiveVideoError } from './live-video-error.enum'
export interface LiveVideoSession {
id: number
startDate: string
endDate: string
error: LiveVideoError
saveReplay: boolean
endingProcessed: boolean
replayVideo: {
id: number
uuid: string
shortUUID: string
}
}