mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-05 12:02:13 +00:00
17 lines
348 B
CoffeeScript
17 lines
348 B
CoffeeScript
|
|
class HabitTracker.Models.Habit extends Backbone.Model
|
||
|
|
paramRoot: 'habit'
|
||
|
|
|
||
|
|
defaults:
|
||
|
|
name: null
|
||
|
|
habit_type: null
|
||
|
|
score: null
|
||
|
|
notes: null
|
||
|
|
up: null
|
||
|
|
down: null
|
||
|
|
done: null
|
||
|
|
position: null
|
||
|
|
|
||
|
|
class HabitTracker.Collections.HabitsCollection extends Backbone.Collection
|
||
|
|
model: HabitTracker.Models.Habit
|
||
|
|
url: '/habits'
|