1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-14 15:03:42 +01:00
Radarr/UI/AddSeries/Collection.js

21 lines
480 B
JavaScript
Raw Normal View History

'use strict';
2013-06-21 03:43:58 +02:00
define(
[
'backbone',
'Series/SeriesModel'
], function (Backbone, SeriesModel) {
2013-06-21 03:43:58 +02:00
return Backbone.Collection.extend({
url : window.ApiRoot + '/series/lookup',
2013-06-21 03:43:58 +02:00
model: SeriesModel,
2013-05-13 06:24:04 +02:00
2013-06-21 03:43:58 +02:00
parse: function (response) {
2013-06-21 03:43:58 +02:00
_.each(response, function (model) {
model.id = undefined;
});
2013-06-21 03:43:58 +02:00
return response;
}
});
2013-05-13 06:24:04 +02:00
});