Skip to content
Open
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
19 changes: 19 additions & 0 deletions docs/portal_config.md
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,7 @@ Below is an example, with inline comments describing what each JSON block config
},
"authorization": {
"enabled": true, // toggles whether Discovery page displays users' access to studies. If true, 'useArboristUI' must also be set to true.
"columnTooltip": "Filter by data access", // no default; this is to clarify availability versus accessibility using tooltip
"supportedValues": { // no default; should be configured if `authorization.enabled=true`
"accessible": {
"enabled": true,
Expand Down Expand Up @@ -508,6 +509,24 @@ Below is an example, with inline comments describing what each JSON block config
"tagSelector": {
"title": "Associated tags organized by category"
},
"studies": [ // optional, this configures addition of tutorial nbs to specific studies. Shown here in BRH example. For HEAL, set to []
{
"match": {
"short_name": "Methodology and Advanced Analytics Resource Center"
},
"fieldsToValues": [
{
"data_access_method": "API, Manifest"
},
{
"tutorial_notebook": "YES"
},
{
"tutorial_notebook_link": "/dashboard/Public/notebooks/JCOIN_MOUD_accessibility_jupyter_notebook_BRH.html"
}
]
},
],
"studyColumns": [ // configures the columns of the table of studies.
{
"name": "Study Name",
Expand Down