2018-10-06 21:06:17 -05:00
|
|
|
import autobind from 'autobind-decorator';
|
|
|
|
import Channel from '../channel';
|
|
|
|
|
|
|
|
export default class extends Channel {
|
2018-10-11 09:01:57 -05:00
|
|
|
public readonly chName = 'messagingIndex';
|
2018-10-11 09:07:20 -05:00
|
|
|
public static shouldShare = true;
|
2018-11-10 11:22:34 -06:00
|
|
|
public static requireCredential = true;
|
2018-10-11 09:01:57 -05:00
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
@autobind
|
|
|
|
public async init(params: any) {
|
|
|
|
// Subscribe messaging index stream
|
2019-04-12 11:43:22 -05:00
|
|
|
this.subscriber.on(`messagingIndexStream:${this.user!.id}`, data => {
|
2018-10-06 21:06:17 -05:00
|
|
|
this.send(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|