summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/streaming/messaging-stream.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/common/scripts/streaming/messaging-stream.ts')
-rw-r--r--src/web/app/common/scripts/streaming/messaging-stream.ts19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/web/app/common/scripts/streaming/messaging-stream.ts b/src/web/app/common/scripts/streaming/messaging-stream.ts
deleted file mode 100644
index 68dfc5ec09..0000000000
--- a/src/web/app/common/scripts/streaming/messaging-stream.ts
+++ /dev/null
@@ -1,19 +0,0 @@
-import Stream from './stream';
-
-/**
- * Messaging stream connection
- */
-export default class Connection extends Stream {
- constructor(me, otherparty) {
- super('messaging', {
- i: me.token,
- otherparty
- });
-
- (this as any).on('_connected_', () => {
- this.send({
- i: me.token
- });
- });
- }
-}