You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A deep link back to a deleted experiment does not show a status because the codeKind, codeOrigin, codeType and codeTypeAndKind are not filled in when deleting an experiment using the following route:
DELETE on route experiments/browser/"+experimentId
Here is what is should look like:
{ "codeKind": "status",
"codeOrigin": "ACAS DDICT",
"codeType": "experiment",
"codeTypeAndKind": "experiment_status",
"codeValue": "approved",
"deleted": false,
"id": 32,
"ignored": true,
"lsKind": "experiment status",
"lsTransaction": 2,
"lsType": "codeValue",
"lsTypeAndKind": "codeValue_experiment status",
"modifiedDate": 1516213078018,
"operatorTypeAndKind": "null_null",
"publicData": true,
"recordedBy": "administrator",
"recordedDate": 1516211402000,
"unitTypeAndKind": "null_null",
"version": 2
},
Here is what the route currently creates as a status:
{
"codeTypeAndKind": "null_null",
"codeValue": "deleted",
"deleted": false,
"id": 79,
"ignored": false,
"lsKind": "experiment status",
"lsType": "codeValue",
"lsTypeAndKind": "codeValue_experiment status",
"operatorTypeAndKind": "null_null",
"publicData": false,
"recordedBy": "default",
"recordedDate": 1516213528256,
"unitTypeAndKind": "null_null",
"version": 0
}
The text was updated successfully, but these errors were encountered:
A deep link back to a deleted experiment does not show a status because the codeKind, codeOrigin, codeType and codeTypeAndKind are not filled in when deleting an experiment using the following route:
DELETE on route experiments/browser/"+experimentId
Here is what is should look like:
{
"codeKind": "status",
"codeOrigin": "ACAS DDICT",
"codeType": "experiment",
"codeTypeAndKind": "experiment_status",
"codeValue": "approved",
"deleted": false,
"id": 32,
"ignored": true,
"lsKind": "experiment status",
"lsTransaction": 2,
"lsType": "codeValue",
"lsTypeAndKind": "codeValue_experiment status",
"modifiedDate": 1516213078018,
"operatorTypeAndKind": "null_null",
"publicData": true,
"recordedBy": "administrator",
"recordedDate": 1516211402000,
"unitTypeAndKind": "null_null",
"version": 2
},
Here is what the route currently creates as a status:
{
"codeTypeAndKind": "null_null",
"codeValue": "deleted",
"deleted": false,
"id": 79,
"ignored": false,
"lsKind": "experiment status",
"lsType": "codeValue",
"lsTypeAndKind": "codeValue_experiment status",
"operatorTypeAndKind": "null_null",
"publicData": false,
"recordedBy": "default",
"recordedDate": 1516213528256,
"unitTypeAndKind": "null_null",
"version": 0
}
The text was updated successfully, but these errors were encountered: