1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-29 22:18:07 +09:00
hotomoe/src/server/api/stream/channels/user-list.ts

24 lines
609 B
TypeScript
Raw Normal View History

import autobind from 'autobind-decorator';
import Channel from '../channel';
2019-01-21 00:32:54 +09:00
import { pack } from '../../../../models/note';
export default class extends Channel {
public readonly chName = 'userList';
2018-10-11 23:07:20 +09:00
public static shouldShare = false;
2018-11-11 02:22:34 +09:00
public static requireCredential = false;
@autobind
public async init(params: any) {
const listId = params.listId as string;
// Subscribe stream
2019-01-21 00:32:54 +09:00
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);
});
}
}