You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
875 B
35 lines
875 B
'use strict';
|
|
/// <reference path="../../app.js" />
|
|
NzbDrone.AddSeries.Existing.UnmappedFolderModel = Backbone.Model.extend({
|
|
|
|
|
|
});
|
|
|
|
NzbDrone.AddSeries.Existing.UnmappedFolderCollection = Backbone.Collection.extend({
|
|
model: NzbDrone.AddSeries.Existing.UnmappedFolderModel,
|
|
|
|
|
|
importItems: function (rootFolderModel, quality) {
|
|
|
|
if (!rootFolderModel) {
|
|
throw "folder array is required";
|
|
}
|
|
|
|
if (!quality) {
|
|
throw "quality is required";
|
|
}
|
|
|
|
this.reset();
|
|
|
|
var qualityCollection = quality;
|
|
var rootFolder = rootFolderModel.get('path');
|
|
|
|
_.each(rootFolderModel.get('unmappedFolders'), function (folder) {
|
|
this.push(new NzbDrone.AddSeries.Existing.UnmappedFolderModel({rootFolder:rootFolder, folder: folder, quality: qualityCollection }));
|
|
}, this);
|
|
}
|
|
});
|
|
|
|
|
|
|