X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/75091532075247ae9c47164ea883f4fe803eddf4..d06c024c7dddeca27c658b668ed313f3f107d2e6:/app/models/quick_voter.rb diff --git a/app/models/quick_voter.rb b/app/models/quick_voter.rb index 7b934a3..3ea4389 100644 --- a/app/models/quick_voter.rb +++ b/app/models/quick_voter.rb @@ -1,4 +1,13 @@ +# 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 QuickVoter < Voter validates_presence_of :session_id - validates_uniqueness_of :session_id + + # validates_uniqueness_of :session_id + # instead we shoudl validate that it's unique for a given election_id end