X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/4efa3e9bc47cc649205a399fde51ed7e61bef7f8..ac5e3489e8b886b7b8a7252ab56ddeb3d3bdadc7:/app/models/election.rb diff --git a/app/models/election.rb b/app/models/election.rb index 69038e4..eaf0727 100644 --- a/app/models/election.rb +++ b/app/models/election.rb @@ -21,5 +21,35 @@ class Election < ActiveRecord::Base end super end + + def start_blockers + reasons = [] + + if self.candidates.length <= 1 + reasons << "You must have at least two candidates." + end + + if self.voters.length <= 1 + reasons << "You must have at least two voters." + end + + reasons + end + + def activate! + self.active = 1 + end + def quickvote? + quickvote.to_i == 1 + end + + def shortdesc + shortdesc = description.split(/\n/)[0] + end + + def longdesc + longdesc = description.split(/\n/)[1..-1].join("") + longdesc.length > 0 ? longdesc : nil + end end