1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/UI/Calendar/CalendarCollection.js

9 lines
332 B
JavaScript
Raw Normal View History

define(['app', 'Calendar/CalendarModel'], function () {
NzbDrone.Calendar.CalendarCollection = Backbone.Collection.extend({
url: NzbDrone.Constants.ApiRoot + '/calendar',
2013-02-28 17:34:18 +01:00
model: NzbDrone.Calendar.CalendarModel,
comparator: function(model) {
return model.get('start');
}
});
});