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.
27 lines
799 B
27 lines
799 B
'use strict';
|
|
define(['app', 'Quality/QualityProfileCollection'], function (app, qualityProfiles) {
|
|
|
|
|
|
NzbDrone.AddSeries.Existing.UnmappedFolderModel = Backbone.Model.extend({
|
|
|
|
defaults: {
|
|
quality: qualityProfiles
|
|
}
|
|
|
|
});
|
|
|
|
NzbDrone.AddSeries.Existing.UnmappedFolderCollection = Backbone.Collection.extend({
|
|
model: NzbDrone.AddSeries.Existing.UnmappedFolderModel,
|
|
|
|
importItems: function (rootFolderModel) {
|
|
|
|
this.reset();
|
|
var rootFolder = rootFolderModel;//.get('path');
|
|
|
|
_.each(rootFolderModel.get('unmappedFolders'), function (folder) {
|
|
this.push(new NzbDrone.AddSeries.Existing.UnmappedFolderModel({ rootFolder: rootFolder, folder: folder}));
|
|
}, this);
|
|
}
|
|
});
|
|
});
|