You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
972 B
38 lines
972 B
'use strict';
|
|
define(['app', 'History/Model', 'backbone.pageable'], function (App, HistoryModel, PageableCollection) {
|
|
NzbDrone.History.Collection = PageableCollection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/history',
|
|
model : NzbDrone.History.Model,
|
|
|
|
state: {
|
|
pageSize: 15,
|
|
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;
|
|
}
|
|
});
|
|
});
|