mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 15:23:09 +02:00
13 lines
284 B
TypeScript
13 lines
284 B
TypeScript
|
import autobind from 'autobind-decorator';
|
||
|
import Channel from '../channel';
|
||
|
|
||
|
export default class extends Channel {
|
||
|
@autobind
|
||
|
public async init(params: any) {
|
||
|
// Subscribe drive stream
|
||
|
this.subscriber.on(`driveStream:${this.user._id}`, data => {
|
||
|
this.send(data);
|
||
|
});
|
||
|
}
|
||
|
}
|