Lidarr/UI/History/Collection.js

37 lines
922 B
JavaScript
Raw Normal View History

2013-05-03 06:53:32 +00:00
"use strict";
define(['app', 'History/Model'], function () {
2013-05-07 02:32:43 +00:00
NzbDrone.History.Collection = Backbone.PageableCollection.extend({
2013-05-03 06:53:32 +00:00
url : NzbDrone.Constants.ApiRoot + '/history',
model : NzbDrone.History.Model,
state: {
2013-05-24 00:57:34 +00:00
pageSize: 15,
2013-05-03 06:53:32 +00:00
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;
}
});
});