1
0
Fork 0
peertube/shared/extra-utils/socket/socket-io-command.ts

16 lines
442 B
TypeScript
Raw Normal View History

2021-07-07 05:55:16 -04:00
import { io } from 'socket.io-client'
import { AbstractCommand, OverrideCommandOptions } from '../shared'
export class SocketIOCommand extends AbstractCommand {
getUserNotificationSocket (options: OverrideCommandOptions = {}) {
return io(this.server.url + '/user-notifications', {
query: { accessToken: this.server.accessToken }
})
}
getLiveNotificationSocket () {
return io(this.server.url + '/live-videos')
}
}