mirror of
https://github.com/Radarr/Radarr
synced 2025-03-04 02:38:18 +00:00
Setting up missing query params
This commit is contained in:
parent
db8912e5b7
commit
c9b9d7b956
2 changed files with 20 additions and 6 deletions
|
@ -3,8 +3,27 @@ define(['app', 'Series/EpisodeModel'], function () {
|
||||||
NzbDrone.Missing.Collection = Backbone.PageableCollection.extend({
|
NzbDrone.Missing.Collection = Backbone.PageableCollection.extend({
|
||||||
url : NzbDrone.Constants.ApiRoot + '/missing',
|
url : NzbDrone.Constants.ApiRoot + '/missing',
|
||||||
model : NzbDrone.Series.EpisodeModel,
|
model : NzbDrone.Series.EpisodeModel,
|
||||||
|
|
||||||
comparator: function (model) {
|
comparator: function (model) {
|
||||||
return model.get('airDate');
|
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,
|
row : NzbDrone.Missing.Row,
|
||||||
columns : columns,
|
columns : columns,
|
||||||
collection: this.missingCollection,
|
collection: this.missingCollection,
|
||||||
className : 'table table-hover',
|
className : 'table table-hover'
|
||||||
state: {
|
|
||||||
pageSize: 10,
|
|
||||||
sortKey: "airDate",
|
|
||||||
order: 1
|
|
||||||
}
|
|
||||||
}));
|
}));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue