about summary refs log tree commit diff
path: root/app/models/poll.rb
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-02-10 14:26:54 +0100
committerGitHub <noreply@github.com>2022-02-10 14:26:54 +0100
commit63854bee6c387fc82b41f1a8eea968790541cf29 (patch)
treec24b6737c55e47cdc8b64d1f36be45bf8f051138 /app/models/poll.rb
parent1bfcb75105baae556101f44957d0fa5b28ef013b (diff)
Fix poll votes not being properly reset on poll change (#17498)
* Fix poll votes not being properly reset on poll change

* Fix and add tests

* Fix poll update handling when the number of options changes
Diffstat (limited to 'app/models/poll.rb')
-rw-r--r--app/models/poll.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/models/poll.rb b/app/models/poll.rb
index 71b5e191f..ba08309a1 100644
--- a/app/models/poll.rb
+++ b/app/models/poll.rb
@@ -83,6 +83,12 @@ class Poll < ApplicationRecord
     end
   end
 
+  def reset_votes!
+    self.cached_tallies = options.map { 0 }
+    self.votes_count = 0
+    votes.delete_all unless new_record?
+  end
+
   private
 
   def prepare_cached_tallies