about summary refs log tree commit diff
path: root/app/models/poll.rb
diff options
context:
space:
mode:
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