+# Selectricity: Voting Machinery for the Masses
+# Copyright (C) 2007, 2008 Benjamin Mako Hill <mako@atdot.cc>
+# 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