Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
return new Promise((resolve, reject) => {
const folderTitle: string = generalHelpers.getUniqueTitle(
title,
templateDictionary,
"user.folders"
);
const folderCreationParam = {
title: folderTitle,
authentication: authentication
};
portal.createFolder(folderCreationParam).then(
ok => resolve(ok),
err => {
reject(err);
}
);
});
}