]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/extra-utils/videos/channels.ts
Adapt CLI to new commands
[github/Chocobozzz/PeerTube.git] / shared / extra-utils / videos / channels.ts
CommitLineData
a5461888
C
1import { User } from '../../models/users/user.model'
2import { ServerInfo } from '../server/servers'
3import { getMyUserInformation } from '../users/users'
4
5function setDefaultVideoChannel (servers: ServerInfo[]) {
6 const tasks: Promise<any>[] = []
7
8 for (const server of servers) {
9 const p = getMyUserInformation(server.url, server.accessToken)
10 .then(res => { server.videoChannel = (res.body as User).videoChannels[0] })
11
12 tasks.push(p)
13 }
14
15 return Promise.all(tasks)
16}
17
18export {
19 setDefaultVideoChannel
20}