1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-04-04 05:33:22 -04:00
2012-12-09 16:26:12 -05:00

11 lines
183 B
Ruby

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