Skip to content
Snippets Groups Projects
Commit 0c1076c9 authored by MeiMei's avatar MeiMei Committed by syuilo
Browse files

userListチャンネルのオーナーチェック Fix #5772 (#5773)

* userListチャンネルのオーナーチェック Fix #5772

* comment
parent cff91a76
No related merge requests found
import autobind from 'autobind-decorator';
import Channel from '../channel';
import { Notes, UserListJoinings } from '../../../../models';
import { Notes, UserListJoinings, UserLists } from '../../../../models';
import shouldMuteThisNote from '../../../../misc/should-mute-this-note';
import { User } from '../../../../models/entities/user';
import { PackedNote } from '../../../../models/repositories/note';
......@@ -17,6 +17,13 @@ export default class extends Channel {
public async init(params: any) {
this.listId = params.listId as string;
// Check existence and owner
const list = await UserLists.findOne({
id: this.listId,
userId: this.user!.id
});
if (!list) return;
// Subscribe stream
this.subscriber.on(`userListStream:${this.listId}`, this.send);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment