1
0
mirror of https://github.com/hotomoe/hotomoe synced 2025-01-04 17:02:57 +09:00
hotomoe/src/server/api/stream/channels/drive.ts
2018-11-11 02:22:34 +09:00

17 lines
396 B
TypeScript

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);
});
}
}