Sonarr/UI/Missing/Collection.js

37 lines
937 B
JavaScript
Raw Normal View History

"use strict";
2013-05-01 03:14:54 +00:00
define(['app', 'Series/EpisodeModel'], function () {
NzbDrone.Missing.Collection = Backbone.PageableCollection.extend({
url : NzbDrone.Constants.ApiRoot + '/missing',
2013-05-01 00:25:33 +00:00
model : NzbDrone.Series.EpisodeModel,
2013-05-01 07:34:05 +00:00
state: {
2013-05-24 00:57:34 +00:00
pageSize: 15,
2013-05-01 07:34:05 +00:00
sortKey: "airDate",
order: 1
},
queryParams: {
totalPages: null,
totalRecords: null,
pageSize: 'pageSize',
2013-05-02 05:50:34 +00:00
sortKey: "sortKey",
order: "sortDir",
2013-05-01 07:34:05 +00:00
directions: {
"-1": "asc",
"1": "desc"
}
2013-05-02 05:50:34 +00:00
},
parseState: function (resp, queryParams, state) {
return {totalRecords: resp.totalRecords};
},
parseRecords: function (resp) {
if (resp) {
return resp.records;
}
return resp;
2013-03-21 03:02:57 +00:00
}
});
});