Fix empty votes arbitrarily increasing voters count in polls (#18526)

th-downstream
Eugen Rochko 2 years ago committed by GitHub
parent e871725668
commit 49c6b3736a

@ -7,6 +7,8 @@ class VoteService < BaseService
include Lockable
def call(account, poll, choices)
return if choices.empty?
authorize_with account, poll, :vote?
@account = account

Loading…
Cancel
Save