Skip to content

Commit

Permalink
Store approver_orcid from Canto JSON
Browse files Browse the repository at this point in the history
Refs #1013
  • Loading branch information
kimrutherford committed Oct 24, 2023
1 parent 6fff719 commit 05c50f9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/PomBase/Import/Canto.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1156,6 +1156,9 @@ sub _store_metadata {
if ($metadata->{approver_name}) {
$self->create_pubprop($pub, 'canto_approver_name', $metadata->{approver_name});
}
if ($metadata->{approver_orcid}) {
$self->create_pubprop($pub, 'canto_approver_orcid', $metadata->{approver_orcid});
}
if ($metadata->{initial_curator_name}) {
$self->create_pubprop($pub, 'canto_initial_curator_name', $metadata->{initial_curator_name});
}
Expand Down

0 comments on commit 05c50f9

Please sign in to comment.