aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/server-commands/socket/socket-io-command.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/server-commands/socket/socket-io-command.ts')
-rw-r--r--shared/server-commands/socket/socket-io-command.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/shared/server-commands/socket/socket-io-command.ts b/shared/server-commands/socket/socket-io-command.ts
new file mode 100644
index 000000000..c277ead28
--- /dev/null
+++ b/shared/server-commands/socket/socket-io-command.ts
@@ -0,0 +1,15 @@
1import { io } from 'socket.io-client'
2import { AbstractCommand, OverrideCommandOptions } from '../shared'
3
4export class SocketIOCommand extends AbstractCommand {
5
6 getUserNotificationSocket (options: OverrideCommandOptions = {}) {
7 return io(this.server.url + '/user-notifications', {
8 query: { accessToken: options.token ?? this.server.accessToken }
9 })
10 }
11
12 getLiveNotificationSocket () {
13 return io(this.server.url + '/live-videos')
14 }
15}