Merge pull request #532 from Radarr/patch/add-import-from-list-back

add importfromlist abck
v0.2.0.267
Devin Buhl 7 years ago committed by GitHub
commit 9522bf3095

@ -47,6 +47,27 @@ var Collection = PageableCollection.extend({
return proxy.save();
},
importFromList : function(models) {
var self = this;
var proxy = _.extend(new Backbone.Model(), {
id : "",
url : self.url + "/import",
toJSON : function() {
return models;
}
});
this.listenTo(proxy, "sync", function(proxyModel, models) {
this.add(models, { merge : true});
this.trigger("save", this);
});
return proxy.save();
},
filterModes : {
'all' : [
null,

Loading…
Cancel
Save