habitica/app/models/habit.rb

12 lines
180 B
Ruby
Raw Normal View History

2012-02-01 04:09:00 +00:00
class Habit < ActiveRecord::Base
ALWAYS = 1
DAILY = 2
ONE_TIME = 3
belongs_to :user
def next_vote
1 #TODO return log or linear based on current score
end
2012-02-01 04:09:00 +00:00
end