mirror of
https://github.com/danbee/tube-status-server
synced 2025-03-04 08:39:12 +00:00
16 lines
269 B
JavaScript
16 lines
269 B
JavaScript
define(['backbone', 'models/line'], function(Backbone, Line) {
|
|
|
|
var LinesCollection = Backbone.Collection.extend({
|
|
url: "/now.json",
|
|
urls: {
|
|
now: "/now.json",
|
|
weekend: "/weekend.json"
|
|
},
|
|
|
|
model: Line,
|
|
});
|
|
|
|
return LinesCollection;
|
|
|
|
});
|