diff options
author | Chocobozzz <me@florianbigard.com> | 2018-08-17 15:45:42 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-08-27 09:41:54 +0200 |
commit | 8a19bee1a1ee39f973bb37429e4f73c3f2873cdb (patch) | |
tree | 33c93ef19451d7e46d4be74ce0681359d2dcc70e /server/tests/utils/videos | |
parent | 965c4b22d0e4d2f853501e844e6ebbb861bd389d (diff) | |
download | PeerTube-8a19bee1a1ee39f973bb37429e4f73c3f2873cdb.tar.gz PeerTube-8a19bee1a1ee39f973bb37429e4f73c3f2873cdb.tar.zst PeerTube-8a19bee1a1ee39f973bb37429e4f73c3f2873cdb.zip |
Add ability to set a name to a channel
Diffstat (limited to 'server/tests/utils/videos')
-rw-r--r-- | server/tests/utils/videos/video-channels.ts | 4 | ||||
-rw-r--r-- | server/tests/utils/videos/videos.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/server/tests/utils/videos/video-channels.ts b/server/tests/utils/videos/video-channels.ts index 3ca39469c..1eea22b31 100644 --- a/server/tests/utils/videos/video-channels.ts +++ b/server/tests/utils/videos/video-channels.ts | |||
@@ -97,10 +97,10 @@ function updateVideoChannelAvatar (options: { | |||
97 | url: string, | 97 | url: string, |
98 | accessToken: string, | 98 | accessToken: string, |
99 | fixture: string, | 99 | fixture: string, |
100 | videoChannelId: string | number | 100 | videoChannelName: string | number |
101 | }) { | 101 | }) { |
102 | 102 | ||
103 | const path = '/api/v1/video-channels/' + options.videoChannelId + '/avatar/pick' | 103 | const path = '/api/v1/video-channels/' + options.videoChannelName + '/avatar/pick' |
104 | 104 | ||
105 | return updateAvatarRequest(Object.assign(options, { path })) | 105 | return updateAvatarRequest(Object.assign(options, { path })) |
106 | } | 106 | } |
diff --git a/server/tests/utils/videos/videos.ts b/server/tests/utils/videos/videos.ts index b280cccda..592248144 100644 --- a/server/tests/utils/videos/videos.ts +++ b/server/tests/utils/videos/videos.ts | |||
@@ -199,13 +199,13 @@ function getAccountVideos ( | |||
199 | function getVideoChannelVideos ( | 199 | function getVideoChannelVideos ( |
200 | url: string, | 200 | url: string, |
201 | accessToken: string, | 201 | accessToken: string, |
202 | videoChannelId: number | string, | 202 | videoChannelName: string, |
203 | start: number, | 203 | start: number, |
204 | count: number, | 204 | count: number, |
205 | sort?: string, | 205 | sort?: string, |
206 | query: { nsfw?: boolean } = {} | 206 | query: { nsfw?: boolean } = {} |
207 | ) { | 207 | ) { |
208 | const path = '/api/v1/video-channels/' + videoChannelId + '/videos' | 208 | const path = '/api/v1/video-channels/' + videoChannelName + '/videos' |
209 | 209 | ||
210 | return makeGetRequest({ | 210 | return makeGetRequest({ |
211 | url, | 211 | url, |