summaryrefslogtreecommitdiffstats
path: root/ui/src/services
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-01-31 20:02:20 -0500
committerDessalines <tyhou13@gmx.com>2020-01-31 20:02:20 -0500
commit8036474ddad2f20c27a2fb023395306d6b9e577d (patch)
tree28f3546c9086931f33d9ee6d910c9aa43a5a1f77 /ui/src/services
parent5188bddd4ddb1d4f4bc4add24db210789054c2a5 (diff)
Starting to work on user message scope.
Diffstat (limited to 'ui/src/services')
-rw-r--r--ui/src/services/WebSocketService.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/src/services/WebSocketService.ts b/ui/src/services/WebSocketService.ts
index 3ad0de44..f3d40149 100644
--- a/ui/src/services/WebSocketService.ts
+++ b/ui/src/services/WebSocketService.ts
@@ -38,6 +38,7 @@ import {
PrivateMessageForm,
EditPrivateMessageForm,
GetPrivateMessagesForm,
+ UserJoinForm,
MessageType,
} from '../interfaces';
import { webSocket } from 'rxjs/webSocket';
@@ -73,6 +74,7 @@ export class WebSocketService {
console.log(`Connected to ${wsUri}`);
if (UserService.Instance.user) {
+ this.userJoin();
}
}
@@ -81,7 +83,8 @@ export class WebSocketService {
}
public userJoin() {
- this.wsSendWrapper(UserOperation.ListCategories, undefined);
+ let form: UserJoinForm = { auth: UserService.Instance.auth };
+ this.subject.next(this.wsSendWrapper(UserOperation.UserJoin, form));
}
public login(loginForm: LoginForm) {