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

22 lines
500 B
JavaScript
Raw Normal View History

2013-05-13 06:24:04 +02:00
"use strict";
2013-06-21 03:43:58 +02:00
define(
[
2013-06-21 07:19:41 +02:00
'app',
2013-06-21 03:43:58 +02:00
'backbone',
'Series/SeriesModel'
], function (App, Backbone, SeriesModel) {
return Backbone.Collection.extend({
url : Constants.ApiRoot + '/series/lookup',
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
});