comments: allow admins to remove comment votes (fix #4640)
Allow admins to remove comment votes by other users. This is done by clicking the comment score to get to the comment vote list, then clicking the Remove button on every vote.
This commit is contained in:
@@ -4,7 +4,7 @@ class CommentVotePolicy < ApplicationPolicy
|
||||
end
|
||||
|
||||
def destroy?
|
||||
record.user_id == user.id
|
||||
!record.is_deleted? && (record.user_id == user.id || user.is_admin?)
|
||||
end
|
||||
|
||||
def can_see_votes?
|
||||
|
||||
Reference in New Issue
Block a user