Sharkey/packages/backend/src/server/api/stream/channels/drive.ts

17 lines
396 B
TypeScript
Raw Normal View History

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