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

add importfromlist abck
This commit is contained in:
Devin Buhl 2017-01-30 17:30:02 -05:00 committed by GitHub
commit 9522bf3095
1 changed files with 21 additions and 0 deletions

View File

@ -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,