summaryrefslogtreecommitdiff
path: root/packages/backend/src/server/api/stream/channels/messaging-index.ts
blob: b930785d2001f0b5e83331db832ae972675dc742 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Channel from '../channel.js';

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

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