diff options
Diffstat (limited to 'shared/server-commands/videos/channels-command.ts')
-rw-r--r-- | shared/server-commands/videos/channels-command.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/shared/server-commands/videos/channels-command.ts b/shared/server-commands/videos/channels-command.ts index a688a120f..385d0fe73 100644 --- a/shared/server-commands/videos/channels-command.ts +++ b/shared/server-commands/videos/channels-command.ts | |||
@@ -6,7 +6,8 @@ import { | |||
6 | VideoChannel, | 6 | VideoChannel, |
7 | VideoChannelCreate, | 7 | VideoChannelCreate, |
8 | VideoChannelCreateResult, | 8 | VideoChannelCreateResult, |
9 | VideoChannelUpdate | 9 | VideoChannelUpdate, |
10 | VideosImportInChannelCreate | ||
10 | } from '@shared/models' | 11 | } from '@shared/models' |
11 | import { unwrapBody } from '../requests' | 12 | import { unwrapBody } from '../requests' |
12 | import { AbstractCommand, OverrideCommandOptions } from '../shared' | 13 | import { AbstractCommand, OverrideCommandOptions } from '../shared' |
@@ -182,11 +183,10 @@ export class ChannelsCommand extends AbstractCommand { | |||
182 | }) | 183 | }) |
183 | } | 184 | } |
184 | 185 | ||
185 | importVideos (options: OverrideCommandOptions & { | 186 | importVideos (options: OverrideCommandOptions & VideosImportInChannelCreate & { |
186 | channelName: string | 187 | channelName: string |
187 | externalChannelUrl: string | ||
188 | }) { | 188 | }) { |
189 | const { channelName, externalChannelUrl } = options | 189 | const { channelName, externalChannelUrl, videoChannelSyncId } = options |
190 | 190 | ||
191 | const path = `/api/v1/video-channels/${channelName}/import-videos` | 191 | const path = `/api/v1/video-channels/${channelName}/import-videos` |
192 | 192 | ||
@@ -194,7 +194,7 @@ export class ChannelsCommand extends AbstractCommand { | |||
194 | ...options, | 194 | ...options, |
195 | 195 | ||
196 | path, | 196 | path, |
197 | fields: { externalChannelUrl }, | 197 | fields: { externalChannelUrl, videoChannelSyncId }, |
198 | implicitToken: true, | 198 | implicitToken: true, |
199 | defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204 | 199 | defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204 |
200 | }) | 200 | }) |