1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00
2012-12-26 21:21:58 -05:00

11 lines
139 B
Ruby

class ActsAsLoggable::UserAction < ActiveRecord::Base
attr_accessible :action
has_many :logs
def to_s
self.action
end
end