]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/extra-utils/socket/socket-io.ts
Add save replay live tests
[github/Chocobozzz/PeerTube.git] / shared / extra-utils / socket / socket-io.ts
1 import * as io from 'socket.io-client'
2
3 function getUserNotificationSocket (serverUrl: string, accessToken: string) {
4 return io(serverUrl + '/user-notifications', {
5 query: { accessToken }
6 })
7 }
8
9 // ---------------------------------------------------------------------------
10
11 export {
12 getUserNotificationSocket
13 }