mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 13:33:09 +02:00
16 lines
424 B
TypeScript
16 lines
424 B
TypeScript
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);
|
|
});
|
|
}
|
|
}
|