summaryrefslogtreecommitdiff
path: root/src/server/api/stream/channels/messaging-index.ts
blob: 0c495398abfdcc98c1c189f45401ed27997df11f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import autobind from 'autobind-decorator';
import Channel from '../channel';

export default class extends Channel {
	public readonly chName = 'messagingIndex';
	public static shouldShare = true;
	public static requireCredential = true;

	@autobind
	public async init(params: any) {
		// Subscribe messaging index stream
		this.subscriber.on(`messagingIndexStream:${this.user!.id}`, data => {
			this.send(data);
		});
	}
}