aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/types/models/video/video-live.ts
diff options
context:
space:
mode:
authorWicklow <123956049+wickloww@users.noreply.github.com>2023-03-31 07:12:21 +0000
committerGitHub <noreply@github.com>2023-03-31 09:12:21 +0200
commit05a60d85997c108d39bcfb14f1ffd4c74f8b1e93 (patch)
tree5041a95ef945620a17f25ba934064b41f6bb00b7 /server/types/models/video/video-live.ts
parentebd61437c1ec92bea9772924c7051cb00d71f778 (diff)
downloadPeerTube-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 'server/types/models/video/video-live.ts')
-rw-r--r--server/types/models/video/video-live.ts9
1 files changed, 8 insertions, 1 deletions
diff --git a/server/types/models/video/video-live.ts b/server/types/models/video/video-live.ts
index 903cea982..a899edfa6 100644
--- a/server/types/models/video/video-live.ts
+++ b/server/types/models/video/video-live.ts
@@ -1,15 +1,22 @@
1import { VideoLiveModel } from '@server/models/video/video-live' 1import { VideoLiveModel } from '@server/models/video/video-live'
2import { PickWith } from '@shared/typescript-utils' 2import { PickWith } from '@shared/typescript-utils'
3import { MVideo } from './video' 3import { MVideo } from './video'
4import { MLiveReplaySetting } from './video-live-replay-setting'
4 5
5type Use<K extends keyof VideoLiveModel, M> = PickWith<VideoLiveModel, K, M> 6type Use<K extends keyof VideoLiveModel, M> = PickWith<VideoLiveModel, K, M>
6 7
7// ############################################################################ 8// ############################################################################
8 9
9export type MVideoLive = Omit<VideoLiveModel, 'Video'> 10export type MVideoLive = Omit<VideoLiveModel, 'Video' | 'ReplaySetting'>
10 11
11// ############################################################################ 12// ############################################################################
12 13
13export type MVideoLiveVideo = 14export type MVideoLiveVideo =
14 MVideoLive & 15 MVideoLive &
15 Use<'Video', MVideo> 16 Use<'Video', MVideo>
17
18// ############################################################################
19
20export type MVideoLiveVideoWithSetting =
21 MVideoLiveVideo &
22 Use<'ReplaySetting', MLiveReplaySetting>