X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/5a8b533b5abec8dc24674e4ef084b0b9779da8af..c5fda1e5174238779afd496014379d6446d1e3c1:/app/models/voter.rb diff --git a/app/models/voter.rb b/app/models/voter.rb index a63ec67..e9b3e9e 100644 --- a/app/models/voter.rb +++ b/app/models/voter.rb @@ -1,3 +1,17 @@ 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 + end + end + + +