Fix vote validation for polls with multiple choices (#10138)

master
Eugen Rochko 5 years ago committed by GitHub
parent 230a012f00
commit 8fe93b0701
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/validators/vote_validator.rb

@ -6,7 +6,7 @@ class VoteValidator < ActiveModel::Validator
if vote.poll.multiple? && vote.poll.votes.where(account: vote.account, choice: vote.choice).exists?
vote.errors.add(:base, I18n.t('polls.errors.already_voted'))
elsif vote.poll.votes.where(account: vote.account).exists?
elsif !vote.poll.multiple? && vote.poll.votes.where(account: vote.account).exists?
vote.errors.add(:base, I18n.t('polls.errors.already_voted'))
end
end

Loading…
Cancel
Save