mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-10-31 16:02:29 +01:00
10 lines
330 B
JavaScript
10 lines
330 B
JavaScript
"use strict";
|
|
define(['app'], function () {
|
|
NzbDrone.Missing.Collection = Backbone.PageableCollection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/missing',
|
|
model : NzbDrone.Series.EpisodeModel,
|
|
comparator: function (model) {
|
|
return model.get('airDate');
|
|
}
|
|
});
|
|
}); |