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

22 lines
500 B
JavaScript
Raw Normal View History

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