mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-23 04:23:35 +00:00
24 lines
609 B
TypeScript
24 lines
609 B
TypeScript
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);
|
|
});
|
|
}
|
|
}
|