PeerTube/shared/extra-utils/socket/socket-io.ts

19 lines
450 B
TypeScript
Raw Normal View History

2018-12-26 03:36:24 -06:00
import * as io from 'socket.io-client'
function getUserNotificationSocket (serverUrl: string, accessToken: string) {
return io(serverUrl + '/user-notifications', {
query: { accessToken }
})
}
2020-11-04 08:31:32 -06:00
function getLiveNotificationSocket (serverUrl: string) {
return io(serverUrl + '/live-videos')
}
2018-12-26 03:36:24 -06:00
// ---------------------------------------------------------------------------
export {
2020-11-04 08:31:32 -06:00
getUserNotificationSocket,
getLiveNotificationSocket
2018-12-26 03:36:24 -06:00
}