1
0

pass NoteEntityService through Channel constructor instead of method args

This commit is contained in:
Hazelnoot
2025-02-25 20:52:14 -05:00
parent de3c9124cd
commit 019e60d9a4
18 changed files with 60 additions and 37 deletions
@@ -18,13 +18,13 @@ class RoleTimelineChannel extends Channel {
private roleId: string;
constructor(
private noteEntityService: NoteEntityService,
noteEntityService: NoteEntityService,
private roleservice: RoleService,
id: string,
connection: Channel['connection'],
) {
super(id, connection);
super(id, connection, noteEntityService);
//this.onNote = this.onNote.bind(this);
}