1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-04-04 05:33:22 -04: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