-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
118 lines (118 loc) · 2.62 KB
/
config.json
File metadata and controls
118 lines (118 loc) · 2.62 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "ROME: REDCap Ontology Annotation Made Easy",
"tt_name": "module_name",
"namespace": "DE\\RUB\\OntologiesMadeEasyExternalModule",
"description": "A REDCap external module that facilitates adding and editing ontology annotations.",
"documentation": "README.md",
"authors": [
{
"name": "Günther Rezniczek",
"email": "guenther.rezniczek@rub.de",
"institution": "St. Elisabethgruppe GmbH - Marien Hospital Herne | Klinikum der Ruhr-Universität Bochum"
},
{
"name": "Christof Meigen",
"email": "christof.meigen@medizin.uni-leipzig.de",
"institution": "Medical Faculty, Leipzig University"
}
],
"framework-version": 16,
"action-tags": [
{
"tag": "@ONTOLOGY",
"description": "Action tag description - see English.ini",
"tt_description": "conf_at_ontology"
}
],
"system-settings": [
{
"key": "cache-config-note",
"name": "Background info on cache mechanism - see English.ini",
"tt_name": "conf_cache_config_note",
"type": "descriptive"
},
{
"key": "cache-backend",
"name": "Cache mechanism",
"tt_name": "conf_cache_backend",
"type": "radio",
"required": true,
"choices": [
{
"value": "db",
"name": "Database",
"tt_name": "conf_cache_backend_db"
},
{
"value": "disk",
"name": "Disk",
"tt_name": "conf_cache_backend_disk"
}
]
},
{
"key": "file-cache-dir",
"name": "Disk cache directory (absolute path; must be writable)",
"tt_name": "conf_file_cache_dir",
"type": "text",
"required": true,
"branchingLogic": {
"field": "cache-backend",
"value": "disk"
}
}
],
"project-settings": [
],
"auth-ajax-actions": [
"search",
"parse",
"get-fieldhelp",
"set-matrix-exclusion",
"refresh-exclusions",
"discover",
"configure",
"get-bioportal-ontologies",
"test-bioportal-token",
"get-snowstorm-branches",
"save-remote-source",
"save-local-source",
"save-system-source",
"toggle-source-enabled",
"delete-source",
"get-source-file-info"
],
"no-csrf-pages": [
"ajax/search",
"ajax/poll"
],
"links": {
"project": [
{
"name": "project_link",
"tt_name": true,
"icon": "fa-solid fa-tags",
"url": "plugin/index.php",
"show-header-and-footer": true
}
],
"control-center": [
{
"name": "project_link",
"tt_name": true,
"icon": "fa-solid fa-tags",
"url": "plugin/index.php",
"show-header-and-footer": true
}
]
},
"crons": [
{
"cron_name": "cache_prune",
"cron_description": "Cron that runs every hour to prune the cache.",
"method": "cron_prune",
"cron_frequency": 3600,
"cron_max_run_time": 300
}
]
}