mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-10 04:52:42 +01:00
769331d45d
single quotes
19 lines
463 B
JavaScript
19 lines
463 B
JavaScript
'use strict';
|
|
define(['app', 'Series/SeriesModel'], function () {
|
|
NzbDrone.Series.SeriesCollection = Backbone.Collection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/series',
|
|
model: NzbDrone.Series.SeriesModel,
|
|
|
|
comparator: function(model) {
|
|
return model.get('title');
|
|
},
|
|
|
|
state: {
|
|
sortKey: 'title',
|
|
order: -1
|
|
}
|
|
});
|
|
|
|
return NzbDrone.Series.SeriesCollection;
|
|
});
|