diff options
author | Wicklow <123956049+wickloww@users.noreply.github.com> | 2023-03-31 07:12:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 09:12:21 +0200 |
commit | 05a60d85997c108d39bcfb14f1ffd4c74f8b1e93 (patch) | |
tree | 5041a95ef945620a17f25ba934064b41f6bb00b7 /shared/models/videos/live/live-video-session.model.ts | |
parent | ebd61437c1ec92bea9772924c7051cb00d71f778 (diff) | |
download | PeerTube-05a60d85997c108d39bcfb14f1ffd4c74f8b1e93.tar.gz PeerTube-05a60d85997c108d39bcfb14f1ffd4c74f8b1e93.tar.zst PeerTube-05a60d85997c108d39bcfb14f1ffd4c74f8b1e93.zip |
Feature/Add replay privacy (#5692)
* Add replay settings feature
* Fix replay settings behaviour
* Fix tests
* Fix tests
* Fix tests
* Update openapi doc and fix tests
* Add tests and fix code
* Models correction
* Add migration and update controller and middleware
* Add check params tests
* Fix video live middleware
* Updated code based on review comments
Diffstat (limited to 'shared/models/videos/live/live-video-session.model.ts')
-rw-r--r-- | shared/models/videos/live/live-video-session.model.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/shared/models/videos/live/live-video-session.model.ts b/shared/models/videos/live/live-video-session.model.ts index 2464e2570..888c20a8a 100644 --- a/shared/models/videos/live/live-video-session.model.ts +++ b/shared/models/videos/live/live-video-session.model.ts | |||
@@ -1,3 +1,4 @@ | |||
1 | import { VideoPrivacy } from '../video-privacy.enum' | ||
1 | import { LiveVideoError } from './live-video-error.enum' | 2 | import { LiveVideoError } from './live-video-error.enum' |
2 | 3 | ||
3 | export interface LiveVideoSession { | 4 | export interface LiveVideoSession { |
@@ -11,6 +12,8 @@ export interface LiveVideoSession { | |||
11 | saveReplay: boolean | 12 | saveReplay: boolean |
12 | endingProcessed: boolean | 13 | endingProcessed: boolean |
13 | 14 | ||
15 | replaySettings?: { privacy: VideoPrivacy } | ||
16 | |||
14 | replayVideo: { | 17 | replayVideo: { |
15 | id: number | 18 | id: number |
16 | uuid: string | 19 | uuid: string |