Sha256: b0f6a6028aa88c2bcb994eeea7023190a57aa9864d22ed7a09c0c91e37acb243
Contents?: true
Size: 271 Bytes
Versions: 156
Compression:
Stored size: 271 Bytes
Contents
class User < ActiveRecord::Base has_many :projects has_many :contributions has_many :credit_cards has_one :user_total has_one :bank_account accepts_nested_attributes_for :bank_account def credits user_total.present? ? user_total.credits : 0 end end
Version data entries
156 entries across 156 versions & 1 rubygems