1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-07-05 00:49:20 +02:00
Files
Sonarr/UI/Series/SeriesCollection.js

19 lines
463 B
JavaScript
Raw Normal View History

2013-05-01 15:42:30 -07:00
"use strict";
define(['app', 'Series/SeriesModel'], function () {
NzbDrone.Series.SeriesCollection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/series',
2013-05-02 00:09:35 -07:00
model: NzbDrone.Series.SeriesModel,
comparator: function(model) {
return model.get('title');
},
2013-05-02 00:09:35 -07:00
2013-05-02 17:25:51 -07:00
state: {
sortKey: "title",
order: -1
2013-05-02 00:09:35 -07:00
}
});
2013-06-18 18:02:23 -07:00
return NzbDrone.Series.SeriesCollection;
2013-05-01 15:42:30 -07:00
});