Working on a step-by-step workflow audit.
[selectricity] / app / models / user.rb
1 class User < ActiveRecord::Base
2   include LoginEngine::AuthenticatedUser
3   has_many :elections
4
5   def name
6     [ firstname, lastname].join(" ")
7   end
8 end
9

Benjamin Mako Hill || Want to submit a patch?