diff options
Diffstat (limited to 'shared/models/videos')
-rw-r--r-- | shared/models/videos/video-channel-create.model.ts | 2 | ||||
-rw-r--r-- | shared/models/videos/video-channel-update.model.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/shared/models/videos/video-channel-create.model.ts b/shared/models/videos/video-channel-create.model.ts index cd6bae965..08cd5fb84 100644 --- a/shared/models/videos/video-channel-create.model.ts +++ b/shared/models/videos/video-channel-create.model.ts | |||
@@ -1,5 +1,5 @@ | |||
1 | export interface VideoChannelCreate { | 1 | export interface VideoChannelCreate { |
2 | name: string | 2 | displayName: string |
3 | description?: string | 3 | description?: string |
4 | support?: string | 4 | support?: string |
5 | } | 5 | } |
diff --git a/shared/models/videos/video-channel-update.model.ts b/shared/models/videos/video-channel-update.model.ts index 73a0a6709..3626ce8a9 100644 --- a/shared/models/videos/video-channel-update.model.ts +++ b/shared/models/videos/video-channel-update.model.ts | |||
@@ -1,5 +1,5 @@ | |||
1 | export interface VideoChannelUpdate { | 1 | export interface VideoChannelUpdate { |
2 | name: string | 2 | displayName: string |
3 | description?: string | 3 | description?: string |
4 | support?: string | 4 | support?: string |
5 | } | 5 | } |