mirror of https://github.com/lidarr/Lidarr
21 lines
480 B
JavaScript
21 lines
480 B
JavaScript
'use strict';
|
||
define(
|
||
[
|
||
'backbone',
|
||
'Series/SeriesModel'
|
||
], function (Backbone, SeriesModel) {
|
||
return Backbone.Collection.extend({
|
||
url : window.ApiRoot + '/series/lookup',
|
||
model: SeriesModel,
|
||
|
||
parse: function (response) {
|
||
|
||
_.each(response, function (model) {
|
||
model.id = undefined;
|
||
});
|
||
|
||
return response;
|
||
}
|
||
});
|
||
});
|