1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Web/_backboneApp/AddSeries/Existing/UnmappedFolderModel.js

36 lines
948 B
JavaScript
Raw Normal View History

2013-02-01 01:40:51 +03:00
'use strict';
define(['app'], function () {
2013-02-01 01:40:51 +03:00
NzbDrone.AddSeries.Existing.UnmappedFolderModel = Backbone.Model.extend({
2013-02-01 01:40:51 +03:00
});
2013-02-01 01:40:51 +03:00
NzbDrone.AddSeries.Existing.UnmappedFolderCollection = Backbone.Collection.extend({
model: NzbDrone.AddSeries.Existing.UnmappedFolderModel,
2013-02-01 01:40:51 +03:00
importItems: function (rootFolderModel, quality) {
if (!rootFolderModel) {
throw "folder array is required";
}
if (!quality) {
throw "quality is required";
}
2013-02-01 01:40:51 +03:00
this.reset();
2013-02-01 01:40:51 +03:00
var qualityCollection = quality;
var rootFolder = rootFolderModel.get('path');
2013-02-01 01:40:51 +03:00
_.each(rootFolderModel.get('unmappedFolders'), function (folder) {
this.push(new NzbDrone.AddSeries.Existing.UnmappedFolderModel({ rootFolder: rootFolder, folder: folder, quality: qualityCollection }));
}, this);
}
});
});