X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/5a8b533b5abec8dc24674e4ef084b0b9779da8af..a38724bea6c09b479a93948b6ef4ef61edd24f39:/app/models/candidate.rb diff --git a/app/models/candidate.rb b/app/models/candidate.rb index 44a4d63..6048562 100644 --- a/app/models/candidate.rb +++ b/app/models/candidate.rb @@ -1,3 +1,24 @@ +# Selectricity: Voting Machinery for the Masses +# Copyright (C) 2007, 2008 Benjamin Mako Hill +# Copyright (C) 2007 Massachusetts Institute of Technology +# +# This program is free software. Please see the COPYING file for +# details. + class Candidate < ActiveRecord::Base belongs_to :election + has_one :picture + validates_presence_of :name + + # validate uniqueness of a name *within a given election* + + def <=>(other) + self.name <=> other.name + end + + def to_s + name + end + end +