1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/AddSeries/Collection.js

13 lines
366 B
JavaScript
Raw Normal View History

2013-05-13 07:24:04 +03:00
"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) {
response.id = undefined;
2013-05-13 07:24:04 +03:00
return response;
}
});
});