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'
|