mirror of https://github.com/Radarr/Radarr
Setting up missing query params
This commit is contained in:
parent
db8912e5b7
commit
c9b9d7b956
|
@ -3,8 +3,27 @@ define(['app', 'Series/EpisodeModel'], function () {
|
|||
NzbDrone.Missing.Collection = Backbone.PageableCollection.extend({
|
||||
url : NzbDrone.Constants.ApiRoot + '/missing',
|
||||
model : NzbDrone.Series.EpisodeModel,
|
||||
|
||||
comparator: function (model) {
|
||||
return model.get('airDate');
|
||||
},
|
||||
|
||||
state: {
|
||||
pageSize: 10,
|
||||
sortKey: "airDate",
|
||||
order: 1
|
||||
},
|
||||
|
||||
queryParams: {
|
||||
totalPages: null,
|
||||
totalRecords: null,
|
||||
pageSize: 'pageSize',
|
||||
sortKey: "sortBy",
|
||||
order: "direction",
|
||||
directions: {
|
||||
"-1": "asc",
|
||||
"1": "desc"
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
|
@ -64,12 +64,7 @@ define([
|
|||
row : NzbDrone.Missing.Row,
|
||||
columns : columns,
|
||||
collection: this.missingCollection,
|
||||
className : 'table table-hover',
|
||||
state: {
|
||||
pageSize: 10,
|
||||
sortKey: "airDate",
|
||||
order: 1
|
||||
}
|
||||
className : 'table table-hover'
|
||||
}));
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue