Skip to content

Commit

Permalink
fix: NOP-50 Remove upload warning for "public domain" metadata value (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
kethlinmil authored Jan 27, 2025
1 parent a29b174 commit 1572fd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/uploaders/csv_manifest_validator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
CONTROLLED_VOCABULARIES = {
'Language' => Qa::Authorities::Local.subauthority_for('languages').all.map { |x| x['id'] },
'License' => Qa::Authorities::Local.subauthority_for('licenses').all.map { |x| x['id'] },
'Rights.copyrightStatus' => Qa::Authorities::Local.subauthority_for('rights_statements').all.map { |x| x['label'] },
'Rights.copyrightStatus' => Qa::Authorities::Local.subauthority_for('rights_statements').all.map { |x| x['label'] } + ['pd'],
'Type.typeOfResource' => Qa::Authorities::Local.subauthority_for('resource_types').all.map { |x| x['label'] },
'IIIF Text direction' => Qa::Authorities::Local.subauthority_for('iiif_text_directions').all.map { |x| x['label'] }
}.freeze
Expand Down

0 comments on commit 1572fd8

Please sign in to comment.