Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added metadata fields that are to be hidden in a local cfg rdc file #274

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions dspace/config/local.cfg.RDC
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
##### Hide Item Metadata Fields #####
##### TAMU Customization - Hidden metadata fields #####
# Fields named here are hidden in the following places UNLESS the
# logged-in user is an Administrator:
# 1. REST API (and therefore UI)
# 2. RDF (every where as there is currently no possibility to authenticate)
# 3. OAI (every where as there is currently no possibility to authenticate)
# Attention: You need to rebuild the OAI SOLR index after every change of
# this property. Run [dspace-install]/bin/dspace oai import -c to do so.
#
# To designate a field as hidden, add a property here in the form:
# metadata.hide.SCHEMA.ELEMENT.QUALIFIER = true
#
# This default configuration hides the dc.description.provenance field,
# since that usually contains email addresses which ought to be kept
# private and is mainly of interest to administrators:
metadata.hide.dc.creator.UIN = true
metadata.hide.dc.identifier.UIN = true
metadata.hide.dc.description.findingAid = true

# END TAMU Customization - hidden metadata fields
Loading