mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 16:32:56 +01:00
21 lines
490 B
JavaScript
21 lines
490 B
JavaScript
"use strict";
|
|
define(['app', 'Series/SeasonModel'], function () {
|
|
NzbDrone.Series.SeasonCollection = Backbone.PageableCollection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/season',
|
|
model: NzbDrone.Series.SeasonModel,
|
|
|
|
mode: 'client',
|
|
|
|
state: {
|
|
sortKey : 'seasonNumber',
|
|
order : 1,
|
|
pageSize: 1000000
|
|
},
|
|
|
|
queryParams: {
|
|
sortKey: null,
|
|
order : null
|
|
}
|
|
});
|
|
});
|