Skip to content
This repository has been archived by the owner on Jan 8, 2022. It is now read-only.

Commit

Permalink
Fix bug in collection exporter (referencing an item)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjgiarlo committed Feb 18, 2021
1 parent 088b11a commit 055058a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/export-collections
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ def serialize(coll)
depositors: apo.persons_with_role('hydrus-collection-item-depositor') + apo.persons_with_role('hydrus-collection-depositor'),
reviewers: apo.persons_with_role('hydrus-collection-reviewer'),
related_items: related_items,
created_at: item.create_date,
updated_at: item.modified_date
created_at: coll.create_date,
updated_at: coll.modified_date
}
end

Expand Down

0 comments on commit 055058a

Please sign in to comment.