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

class ActsAsLoggable::BikeAction < ActiveRecord::Base
#set_fixture_class :bike_actions => ActsAsLoggable::BikeActions
attr_accessible :action
belongs_to :bike
def to_s
self.action
end
end