1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-02-28 16:53:23 -05:00
BikeShed-1/app/models/acts_as_loggable/transaction_action.rb
2013-02-02 14:08:42 -05:00

11 lines
163 B
Ruby

class ActsAsLoggable::TransactionAction < ActiveRecord::Base
attr_accessible :action
has_many :logs
#belongs_to :bike
def to_s
self.action
end
end