mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
37 lines
922 B
JavaScript
37 lines
922 B
JavaScript
"use strict";
|
|
define(['app', 'History/Model'], function () {
|
|
NzbDrone.History.Collection = Backbone.PageableCollection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/history',
|
|
model : NzbDrone.History.Model,
|
|
|
|
state: {
|
|
pageSize: 10,
|
|
sortKey: "date",
|
|
order: 1
|
|
},
|
|
|
|
queryParams: {
|
|
totalPages: null,
|
|
totalRecords: null,
|
|
pageSize: 'pageSize',
|
|
sortKey: "sortKey",
|
|
order: "sortDir",
|
|
directions: {
|
|
"-1": "asc",
|
|
"1": "desc"
|
|
}
|
|
},
|
|
|
|
parseState: function (resp, queryParams, state) {
|
|
return {totalRecords: resp.totalRecords};
|
|
},
|
|
|
|
parseRecords: function (resp) {
|
|
if (resp) {
|
|
return resp.records;
|
|
}
|
|
|
|
return resp;
|
|
}
|
|
});
|
|
}); |