mirror of
https://github.com/Readarr/Readarr.git
synced 2026-03-28 18:05:51 -04: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');
|
|
}
|
|
});
|
|
}); |