1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/UI/AddSeries/Collection.js

22 lines
500 B
JavaScript
Raw Normal View History

2013-06-22 08:24:24 +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
});