7 lines
131 B
Ruby
7 lines
131 B
Ruby
class CommentVotePolicy < ApplicationPolicy
|
|
def destroy?
|
|
# XXX permissions are checked in Comment#unvote!
|
|
true
|
|
end
|
|
end
|