1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/UI/Calendar/CalendarCollection.js

10 lines
359 B
JavaScript
Raw Normal View History

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