1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-01 01:03:23 -05:00
BikeShed-1/app/models/acts_as_loggable/transaction_action.rb

11 lines
163 B
Ruby
Raw Normal View History

2012-12-09 16:26:12 -05:00
class ActsAsLoggable::TransactionAction < ActiveRecord::Base
attr_accessible :action
2013-02-02 14:08:42 -05:00
has_many :logs
#belongs_to :bike
2012-12-09 16:26:12 -05:00
def to_s
self.action
end
end