1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2026-02-18 01:55:34 -05: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