1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 10:32:35 +01:00
Radarr/UI/Missing/Collection.js

29 lines
753 B
JavaScript
Raw Normal View History

"use strict";
2013-05-01 05:14:54 +02:00
define(['app', 'Series/EpisodeModel'], function () {
NzbDrone.Missing.Collection = Backbone.PageableCollection.extend({
url : NzbDrone.Constants.ApiRoot + '/missing',
2013-05-01 02:25:33 +02:00
model : NzbDrone.Series.EpisodeModel,
2013-05-01 09:34:05 +02:00
comparator: function (model) {
2013-03-21 04:02:57 +01:00
return model.get('airDate');
2013-05-01 09:34:05 +02:00
},
state: {
pageSize: 10,
sortKey: "airDate",
order: 1
},
queryParams: {
totalPages: null,
totalRecords: null,
pageSize: 'pageSize',
sortKey: "sortBy",
order: "direction",
directions: {
"-1": "asc",
"1": "desc"
}
2013-03-21 04:02:57 +01:00
}
});
});