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/video-channels.ts | |
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/video-channels.ts')
-rw-r--r-- | server/tests/utils/videos/video-channels.ts | 4 |
1 files changed, 2 insertions, 2 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 | } |