diff options
Diffstat (limited to 'shared/server-commands/videos/imports-command.ts')
-rw-r--r-- | shared/server-commands/videos/imports-command.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/shared/server-commands/videos/imports-command.ts b/shared/server-commands/videos/imports-command.ts index c931ac481..07d810ec1 100644 --- a/shared/server-commands/videos/imports-command.ts +++ b/shared/server-commands/videos/imports-command.ts | |||
@@ -57,15 +57,17 @@ export class ImportsCommand extends AbstractCommand { | |||
57 | getMyVideoImports (options: OverrideCommandOptions & { | 57 | getMyVideoImports (options: OverrideCommandOptions & { |
58 | sort?: string | 58 | sort?: string |
59 | targetUrl?: string | 59 | targetUrl?: string |
60 | videoChannelSyncId?: number | ||
61 | search?: string | ||
60 | } = {}) { | 62 | } = {}) { |
61 | const { sort, targetUrl } = options | 63 | const { sort, targetUrl, videoChannelSyncId, search } = options |
62 | const path = '/api/v1/users/me/videos/imports' | 64 | const path = '/api/v1/users/me/videos/imports' |
63 | 65 | ||
64 | return this.getRequestBody<ResultList<VideoImport>>({ | 66 | return this.getRequestBody<ResultList<VideoImport>>({ |
65 | ...options, | 67 | ...options, |
66 | 68 | ||
67 | path, | 69 | path, |
68 | query: { sort, targetUrl }, | 70 | query: { sort, targetUrl, videoChannelSyncId, search }, |
69 | implicitToken: true, | 71 | implicitToken: true, |
70 | defaultExpectedStatus: HttpStatusCode.OK_200 | 72 | defaultExpectedStatus: HttpStatusCode.OK_200 |
71 | }) | 73 | }) |