Replies: 3 comments 2 replies
-
The comment plugin already supports storing multiple comment IDs on the same text. For IDs {
comment: true,
comment_one: true,
comment_two: true,
comment_three: true,
text: "This",
} |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hey @12joan |
Beta Was this translation helpful? Give feedback.
0 replies
-
I don't want to filter out |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I want to implement a note plugin like comments, the functionality is like everyone can leave a note, and the note is only visible to the user who toke the note.
Unlike the comments, which are visible to everyone, in note plugin, I can filter the notes by the userId. The things is since everyone can leave notes on the same text, so the note should contain an array of noteId, such that the user can render their notes from the array.
I want to implement it based on the comment plugin, but in comment, it only stores one comment id, do you think it's feasible to change it to an array?
Beta Was this translation helpful? Give feedback.
All reactions