1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-27 18:17:13 +00:00
Lidarr/UI/Calendar/CalendarCollection.js
2013-03-30 12:30:00 -07:00

10 lines
No EOL
359 B
JavaScript

"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) {
return model.get('start');
}
});
});