blob: 391c4b5c325a093369a5018a936de38dc1f2153a (
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 = 'drive';
public static shouldShare = true;
public static requireCredential = true;
@autobind
public async init(params: any) {
// Subscribe drive stream
this.subscriber.on(`driveStream:${this.user._id}`, data => {
this.send(data);
});
}
}
|