blob: 7425a620ffe8bed61de4fdd3585954e23e339ca7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import autobind from 'autobind-decorator';
import Channel from '../channel';
export default class extends Channel {
public readonly chName = 'drive';
public static shouldShare = true;
@autobind
public async init(params: any) {
// Subscribe drive stream
this.subscriber.on(`driveStream:${this.user._id}`, data => {
this.send(data);
});
}
}
|