mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
26 lines
575 B
JavaScript
26 lines
575 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
'Series/SeriesModel'
|
|
], function (Backbone, SeriesModel) {
|
|
var Collection = Backbone.Collection.extend({
|
|
url : window.ApiRoot + '/series',
|
|
model: SeriesModel,
|
|
|
|
comparator: function (model) {
|
|
return model.get('title');
|
|
},
|
|
|
|
state: {
|
|
sortKey: 'title',
|
|
order : -1
|
|
}
|
|
});
|
|
|
|
var collection = new Collection();
|
|
collection.fetch();
|
|
|
|
return collection;
|
|
});
|