2012-12-09 16:26:12 -05:00
|
|
|
class ActsAsLoggable::BikeAction < ActiveRecord::Base
|
2012-12-06 17:14:05 -05:00
|
|
|
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
|
2012-12-06 17:14:05 -05:00
|
|
|
end
|