X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/c5fda1e5174238779afd496014379d6446d1e3c1..99e1580f0d7707b8e2f8c08f8aae70c3d4906637:/app/models/candidate.rb diff --git a/app/models/candidate.rb b/app/models/candidate.rb index dfc8b1f..6048562 100644 --- a/app/models/candidate.rb +++ b/app/models/candidate.rb @@ -1,8 +1,19 @@ +# 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 + self.name <=> other.name end def to_s @@ -10,3 +21,4 @@ class Candidate < ActiveRecord::Base end end +