in public/components/stub-modal/stub-modal.js [356:375]
function createItemPromise() {
if ($scope.contentName === 'Atom') {
stub.contentType = $scope.stub.contentType.toLowerCase();
if (addToAtomEditor) {
return wfContentService.createInAtomEditor(stub);
} else if (stub.id) {
return wfContentService.updateStub(stub);
} else {
return wfContentService.createStub(stub);
}
} else {
if (addToComposer) {
return wfContentService.createInComposer(stub);
} else if (stub.id) {
return wfContentService.updateStub(stub);
} else {
return wfContentService.createStub(stub);
}
}
}