(commentId: string, teamId: string)
| 803 | } |
| 804 | |
| 805 | public async readCommentStoreMethod(commentId: string, teamId: string) { |
| 806 | await readCommentApiMethod({ |
| 807 | commentId, |
| 808 | teamId, |
| 809 | }); |
| 810 | |
| 811 | runInAction(() => { |
| 812 | this.unreadCommentIds.remove(commentId); |
| 813 | }); |
| 814 | } |
| 815 | |
| 816 | public async unreadCommentStoreMethod(commentId: string, teamId: string) { |
| 817 | await unreadCommentApiMethod({ |
no test coverage detected