aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/videos/channel
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/videos/channel')
-rw-r--r--shared/models/videos/channel/video-channel-create.model.ts5
-rw-r--r--shared/models/videos/channel/video-channel-update.model.ts5
-rw-r--r--shared/models/videos/channel/video-channel.model.ts11
3 files changed, 21 insertions, 0 deletions
diff --git a/shared/models/videos/channel/video-channel-create.model.ts b/shared/models/videos/channel/video-channel-create.model.ts
new file mode 100644
index 000000000..08cd5fb84
--- /dev/null
+++ b/shared/models/videos/channel/video-channel-create.model.ts
@@ -0,0 +1,5 @@
1export interface VideoChannelCreate {
2 displayName: string
3 description?: string
4 support?: string
5}
diff --git a/shared/models/videos/channel/video-channel-update.model.ts b/shared/models/videos/channel/video-channel-update.model.ts
new file mode 100644
index 000000000..3626ce8a9
--- /dev/null
+++ b/shared/models/videos/channel/video-channel-update.model.ts
@@ -0,0 +1,5 @@
1export interface VideoChannelUpdate {
2 displayName: string
3 description?: string
4 support?: string
5}
diff --git a/shared/models/videos/channel/video-channel.model.ts b/shared/models/videos/channel/video-channel.model.ts
new file mode 100644
index 000000000..92918f66c
--- /dev/null
+++ b/shared/models/videos/channel/video-channel.model.ts
@@ -0,0 +1,11 @@
1import { Actor } from '../../actors/actor.model'
2import { Video } from '../video.model'
3import { Account } from '../../actors/index'
4
5export interface VideoChannel extends Actor {
6 displayName: string
7 description: string
8 support: string
9 isLocal: boolean
10 ownerAccount?: Account
11}