blob: 945182ea105eb6e90b4904b121880888fcbc99e1 (
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 = 'admin';
public static shouldShare = true;
public static requireCredential = true;
public async init(params: any) {
// Subscribe admin stream
this.subscriber.on(`adminStream:${this.user!.id}`, data => {
this.send(data);
});
}
}
|