Lidarr/UI/Calendar/CalendarCollection.js

10 lines
355 B
JavaScript
Raw Normal View History

2013-03-30 19:30:00 +00:00
"use strict";
2013-05-01 01:54:15 +00:00
define(['app', 'Series/EpisodeModel'], function () {
NzbDrone.Calendar.CalendarCollection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/calendar',
2013-05-01 01:54:15 +00:00
model : NzbDrone.Series.EpisodeModel,
comparator: function (model) {
return model.get('airDate');
2013-02-28 16:34:18 +00:00
}
});
});