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
182 B
Ruby

#this might be good for logging CRUD actions
class ActsAsLoggable::LogAction < ActiveRecord::Base
attr_accessible :action
has_many :logs
def to_s
self.action
end
end