Skip to content

Commit

Permalink
🧹 Update Bulkrax config
Browse files Browse the repository at this point in the history
This commit will update the Bulkrax configuration with how it is set in
production.
  • Loading branch information
kirkkwang authored and jeremyf committed Oct 10, 2023
1 parent d72edec commit de418e7
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions config/initializers/bulkrax.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
'creator' => { from: ['creator'] },
'contributor' => { from: ['contributor'] },
'edition' => { from: ['edition'] },
'alternative_title' => { from: ['alternative_title'] },
'resource_type' => { from: ['resource_type'] },
'issue_number' => { from: ['issue_number'] },
'language' => { from: ['language'] },
Expand Down Expand Up @@ -81,21 +82,22 @@
'aark_id' => { from: ['identifier.ark'] },
'identifier' => { from: ['identifier'], source_identifier: true },
'bibliographic_citation' => { from: ['identifier.bibliographicCitation'] },
'creator' => { from: ['creator'] },
'contributor' => { from: ['contributor'] },
'creator' => { from: ['creator'], split: ';' },
'contributor' => { from: ['contributor'], split: ';' },
'edition' => { from: ['title.release'] },
'alternative_title' => { from: ['title.alternative'] },
'resource_type' => { from: ['type'] },
'issue_number' => { from: ['relation.isPartOfIssue'] },
'language' => { from: ['language'] },
'description' => { from: ['description'] },
'language' => { from: ['language'], split: ';' },
'description' => { from: ['description'], split: ';' },
'pagination' => { from: ['format.extent'] },
'extent' => { from: ['format.extent'], split: ';' },
'source' => { from: ['source'] },
'source' => { from: ['source'], split: ';' },
'date_issued' => { from: ['date'] },
'alt' => { from: ['coverage.spatial'] },
'publisher' => { from: ['publisher'], split: ';' },
'rights_statement' => { from: ['rights'] },
'part_of' => { from: ['relation.isPartOf'] },
'part_of' => { from: ['relation.isPartOf'], split: ';' },
'part' => { from: ['relation.isPartOf'] },
'date_created' => { from: ['date.other'] },
'title' => { from: ['title'] },
Expand Down

0 comments on commit de418e7

Please sign in to comment.