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

10 lines
355 B
JavaScript
Raw Normal View History

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