mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
21 lines
470 B
JavaScript
21 lines
470 B
JavaScript
"use strict";
|
|
define(['app', 'Series/SeriesModel'], function () {
|
|
NzbDrone.Series.SeriesCollection = Backbone.Collection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/series',
|
|
model: NzbDrone.Series.SeriesModel,
|
|
|
|
mode: 'client',
|
|
|
|
state: {
|
|
sortKey: "title",
|
|
order: -1,
|
|
pageSize: 1000000
|
|
},
|
|
|
|
queryParams: {
|
|
sortKey: null,
|
|
order: null
|
|
}
|
|
});
|
|
});
|