Fix vote validation for polls with multiple choices (#10138)
This commit is contained in:
		
							parent
							
								
									230a012f00
								
							
						
					
					
						commit
						8fe93b0701
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -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…
	
	Add table
		
		Reference in a new issue