mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
26 lines
609 B
JavaScript
26 lines
609 B
JavaScript
|
'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,
|
||
|
|
||
|
|
||
|
importArray: function (unmappedFolderArray) {
|
||
|
|
||
|
if (!unmappedFolderArray) {
|
||
|
throw "folder array is required";
|
||
|
}
|
||
|
|
||
|
_.each(unmappedFolderArray, function (folder) {
|
||
|
this.push(new NzbDrone.AddSeries.Existing.UnmappedFolderModel({ folder: folder }));
|
||
|
}, this);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
|
||
|
|