X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/c5fda1e5174238779afd496014379d6446d1e3c1..c65b1e11059c5cf510b54c785d4a246215058f70:/app/models/voter.rb diff --git a/app/models/voter.rb b/app/models/voter.rb index e9b3e9e..f229909 100644 --- a/app/models/voter.rb +++ b/app/models/voter.rb @@ -2,16 +2,14 @@ class Voter < ActiveRecord::Base belongs_to :election has_one :vote - def initialize(args) - super(args) - - token_generator = UniqueTokenGenerator.new( 16 ) - until password and Voter.find_all( [ "password = ?", password ]).empty? - self.password = token_generator.token - end + def destroy + vote.destroy if vote + super end + def voted? + vote.confirmed == 1 + end end -