2018-10-07 02:06:17 +00:00
|
|
|
import autobind from 'autobind-decorator';
|
|
|
|
import Channel from '../channel';
|
|
|
|
|
|
|
|
export default class extends Channel {
|
2018-10-11 14:01:57 +00:00
|
|
|
public readonly chName = 'drive';
|
2018-10-11 14:07:20 +00:00
|
|
|
public static shouldShare = true;
|
2018-11-10 17:22:34 +00:00
|
|
|
public static requireCredential = true;
|
2018-10-11 14:01:57 +00:00
|
|
|
|
2018-10-07 02:06:17 +00:00
|
|
|
@autobind
|
|
|
|
public async init(params: any) {
|
|
|
|
// Subscribe drive stream
|
|
|
|
this.subscriber.on(`driveStream:${this.user._id}`, data => {
|
|
|
|
this.send(data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|