comments
comments copied to clipboard
Add `hasVoted()` function for comment
Similar to hasFlagged() we want to know when a user has already voted on a comment.
Hi, does something like this exist now? Or is there a good workaround for it?
Not implemented currently, but you can handle this logic yourself.
$hasDownVoted = Comments::$plugin->getVotes()->hasDownVoted($comment, $user);
$hasUpVoted = Comments::$plugin->getVotes()->hasUpVoted($comment, $user);