mirror of
https://github.com/Radarr/Radarr
synced 2024-12-27 10:19:41 +00:00
20 lines
478 B
JavaScript
20 lines
478 B
JavaScript
"use strict";
|
|
define(['app', 'Series/SeriesModel'], function () {
|
|
NzbDrone.Series.SeriesCollection = Backbone.PageableCollection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/series',
|
|
model: NzbDrone.Series.SeriesModel,
|
|
|
|
mode: 'client',
|
|
|
|
state: {
|
|
sortKey: "title",
|
|
order: -1,
|
|
pageSize: 1000000
|
|
},
|
|
|
|
queryParams: {
|
|
sortKey: null,
|
|
order: null
|
|
}
|
|
});
|
|
});
|