4 lines
100 B
JavaScript
4 lines
100 B
JavaScript
app.collections.Posts = Backbone.Collection.extend({
|
|
model: app.models.Post,
|
|
url : "/posts"
|
|
});
|