Browse Source

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

pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
8fe93b0701
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/validators/vote_validator.rb

+ 1
- 1
app/validators/vote_validator.rb View File

@ -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