]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/utils/videos/video-history.ts
Cleanup tests imports
[github/Chocobozzz/PeerTube.git] / server / tests / utils / videos / video-history.ts
1 import { makePutBodyRequest } from '../requests/requests'
2
3 function userWatchVideo (url: string, token: string, videoId: number | string, currentTime: number) {
4 const path = '/api/v1/videos/' + videoId + '/watching'
5 const fields = { currentTime }
6
7 return makePutBodyRequest({ url, path, token, fields, statusCodeExpected: 204 })
8 }
9
10 // ---------------------------------------------------------------------------
11
12 export {
13 userWatchVideo
14 }