forked from mhira-project/data-export
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings-default.R
48 lines (36 loc) · 1.58 KB
/
settings-default.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
## Default settings file ----------------------------------------------------
# Please make a copy of this file and name it settings.R
# If this is not done, the app will automatically create a settings.R file
# with the defaults listed below on initiation.
# The app cannot run without these setting variables.
# Please make sure that all settings of the default file are in the 'settings.R'
# file.
# Settings might not be refreshed until something in the app.R file changes.
## Settings -----------------------------------------------------------------
# Url of graphql API of MIHRA (container-name and port)
url = "mhira-backend:3000/graphql"
# App closes after x seconds of inactivity
timeoutSeconds = 10*60
# in case no language is found from local storage(browser)
defaultLang = "en"
# Plot shows time or discrete session names on x-axis when multiple assessments were made
TimeOnXAxis = T
# Subscales in interpretation table show one scale per row or are aggregated
showScale = F
# Show answers to single items
showItems = T
# Show this patient information. Remove those that should not be shown.
selectPatientInfo = c(
'medicalRecordNo',
'initials',
#'firstName',
#'middleName',
#'lastName',
#'birthDate',
'age',
'gender')
# Disclaimer shown at the end of the reports
disclaimer = "Disclaimer: The results of the instruments need to be
interpreted by a mental health care professional (e.g., a psychologist)
under consideration of other sources of information.
The results have no validity if used without this expertise."