mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 02:22:31 +01:00
16 lines
432 B
JavaScript
16 lines
432 B
JavaScript
"use strict";
|
|
define(['app', 'Series/SeriesModel'], function () {
|
|
NzbDrone.AddSeries.Collection = Backbone.Collection.extend({
|
|
url : NzbDrone.Constants.ApiRoot + '/series/lookup',
|
|
model: NzbDrone.Series.SeriesModel,
|
|
|
|
parse: function (response) {
|
|
_.each(response, function (model) {
|
|
model.id = undefined;
|
|
});
|
|
|
|
return response;
|
|
}
|
|
});
|
|
});
|