Sonarr/UI/Series/SeriesCollection.js

17 lines
417 B
JavaScript
Raw Normal View History

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