1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-01 01:03:23 -05:00

11 lines
182 B
Ruby
Raw Normal View History

#this might be good for logging CRUD actions
2012-12-09 16:26:12 -05:00
class ActsAsLoggable::LogAction < ActiveRecord::Base
attr_accessible :action
2012-12-26 21:21:58 -05:00
has_many :logs
2012-12-09 16:26:12 -05:00
def to_s
self.action
end
end