summaryrefslogtreecommitdiff
path: root/src/server/api/stream/channels/drive.ts
blob: 671aad43669f96655f1bc22003ecef0d3af129b6 (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);
		});
	}
}