blob: 5debf4177048dea96c2001705564d1ce048220c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import autobind from 'autobind-decorator';
import Channel from '../channel';
import { pack } from '../../../../models/note';
export default class extends Channel {
public readonly chName = 'userList';
public static shouldShare = false;
public static requireCredential = false;
@autobind
public async init(params: any) {
const listId = params.listId as string;
// Subscribe stream
this.subscriber.on(`userListStream:${listId}`, async data => {
// 再パック
if (data.type == 'note') data.body = await pack(data.body.id, this.user, {
detail: true
});
this.send(data);
});
}
}
|