15 lines
317 B
TypeScript
15 lines
317 B
TypeScript
|
import autobind from 'autobind-decorator';
|
||
|
import Channel from '../channel';
|
||
|
|
||
|
export default class extends Channel {
|
||
|
@autobind
|
||
|
public async init(params: any) {
|
||
|
const listId = params.listId as string;
|
||
|
|
||
|
// Subscribe stream
|
||
|
this.subscriber.on(`userListStream:${listId}`, data => {
|
||
|
this.send(data);
|
||
|
});
|
||
|
}
|
||
|
}
|