Updated the system to Rails 1.2.
[selectricity-live] / app / models / user.rb
1 class User < ActiveRecord::Base
2   has_many :elections
3
4   def name
5     [ firstname, lastname].join(" ")
6   end
7 end
8

Benjamin Mako Hill || Want to submit a patch?