X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/936d687077455711e0c5031f0244cc873f225658..5a8b533b5abec8dc24674e4ef084b0b9779da8af:/app/models/election.rb diff --git a/app/models/election.rb b/app/models/election.rb index be828d0..29bf1b0 100644 --- a/app/models/election.rb +++ b/app/models/election.rb @@ -1,7 +1,19 @@ class Election < ActiveRecord::Base has_many :candidates + has_many :voters + has_many :votes validates_presence_of :name, :description + require 'date' + + def startdate + read_attribute( :startdate ) || DateTime.now + end + + def enddate + read_attribute( :enddate ) || DateTime.now + 14 + end + def destroy self.candidates.each do |candidate| candidate.destroy