1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/UI/Series/SeasonCollection.js

25 lines
560 B
JavaScript
Raw Normal View History

'use strict';
define(
[
'Series/SeasonModel',
'backbone.pageable'
], function (SeasonModel, PageAbleCollection) {
return PageAbleCollection.extend({
url : window.ApiRoot + '/season',
model: SeasonModel,
2013-05-12 08:53:39 -07:00
mode: 'client',
2013-05-12 08:53:39 -07:00
state: {
sortKey : 'seasonNumber',
order : 1,
pageSize: 1000000
},
2013-05-12 08:53:39 -07:00
queryParams: {
sortKey: null,
order : null
}
});
2013-03-03 14:42:26 -08:00
});