1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Calendar/CalendarCollection.js

10 lines
355 B
JavaScript
Raw Normal View History

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