mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 21:23:08 +02:00
23 lines
609 B
TypeScript
23 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);
|
|
});
|
|
}
|
|
}
|