tap/app/models/user.rb

14 lines
142 B
Ruby
Raw Normal View History

2014-11-06 14:46:59 +01:00
class User < ActiveRecord::Base
2014-11-23 21:12:31 +01:00
has_many :orders
before_save :init
2014-11-06 18:30:53 +01:00
2014-11-23 21:12:31 +01:00
def init
self.balance ||= 0
2014-11-10 02:30:42 +01:00
end
2014-11-06 18:30:53 +01:00
2014-11-23 21:12:31 +01:00
has_secure_password
2014-11-06 14:46:59 +01:00
end