Bug: remove false positives for reviewer reminders

This commit is contained in:
Mark Moser
2017-05-10 17:06:35 -05:00
parent 3ebb79857e
commit e6cc00ca57
3 changed files with 3 additions and 2 deletions

View File

@ -26,7 +26,7 @@ class ReviewerReminder
from reviewer_votes rev
inner join users u on u.id = rev.user_id
inner join candidates c on c.id = rev.candidate_id
where rev.vote = 0 and rev.veto = 0
where rev.vote = 0 and c.review_status = 0
and u.role != 'manager' and u.active is not false;"
ActiveRecord::Base.connection.exec_query(sql)
end