Skip to content

Commit

Permalink
holdingpen: update endpoints for setCore
Browse files Browse the repository at this point in the history
  • Loading branch information
drjova committed May 26, 2021
1 parent 2939954 commit 3b060a9
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -98,7 +98,7 @@
},

setCore: function(vm, workflowId) {
$http.post('/api/holdingpen/' + workflowId + '/core-selection/continue').then(function (response) {
$http.post('/api/workflows/' + workflowId + '/core-selection/continue').then(function (response) {
vm.ingestion_complete = true;
var record = vm.record;
if (!record) {
Expand All @@ -115,7 +115,7 @@
},

setAccept: function(vm, workflowId) {
$http.post('/api/holdingpen/' + workflowId + '/core-selection/complete').then(function (response) {
$http.post('/api/workflows/' + workflowId + '/core-selection/complete').then(function (response) {
vm.ingestion_complete = true;
var record = vm.record;
if (!record) {
Expand Down

0 comments on commit 3b060a9

Please sign in to comment.