Skip to content
Closed
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
8 changes: 8 additions & 0 deletions invenio.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ from flask_resources import create_error_handler
from invenio_administration.permissions import administration_permission
from invenio_app_rdm.config import (
APP_RDM_DEPOSIT_FORM_DEFAULTS as DEPOSIT_FORM_DEFAULTS,
APP_RDM_DEPOSIT_FORM_SECTIONS_CONFIG
)
from invenio_app_rdm.config import (
APP_RDM_IDENTIFIER_SCHEMES_UI,
Expand Down Expand Up @@ -304,6 +305,13 @@ APP_RDM_DEPOSIT_FORM_QUOTA = {
"maxStorage": 5 * 10**10,
}

#Set config for deposit form sections
APP_RDM_DEPOSIT_FORM_SECTIONS_CONFIG = {
**APP_RDM_DEPOSIT_FORM_SECTIONS_CONFIG,
"basic-information": APP_RDM_DEPOSIT_FORM_SECTIONS_CONFIG["basic-information"] + ["pids.doi"],
}


# Instance's theme entrypoint file. Path relative to the ``assets/`` folder.
INSTANCE_THEME_FILE = "./less/theme.less"

Expand Down
Loading