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.
Radarr/UI/Series/SeasonCollection.js

25 lines
560 B

'use strict';
define(
[
'Series/SeasonModel',
'backbone.pageable'
], function (SeasonModel, PageAbleCollection) {
return PageAbleCollection.extend({
url : window.ApiRoot + '/season',
model: SeasonModel,
12 years ago
mode: 'client',
12 years ago
state: {
sortKey : 'seasonNumber',
order : 1,
pageSize: 1000000
},
12 years ago
queryParams: {
sortKey: null,
order : null
}
});
});