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