Add messaging widget
This commit is contained in:
parent
0a994e5b98
commit
ab2293aa4c
14 changed files with 186 additions and 7 deletions
14
src/web/app/common/scripts/messaging-index-stream.ts
Normal file
14
src/web/app/common/scripts/messaging-index-stream.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import Stream from './stream';
|
||||
|
||||
/**
|
||||
* Messaging index stream connection
|
||||
*/
|
||||
class Connection extends Stream {
|
||||
constructor(me) {
|
||||
super('messaging-index', {
|
||||
i: me.token
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
export default Connection;
|
||||
Loading…
Add table
Add a link
Reference in a new issue