-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
72 lines (72 loc) · 2.29 KB
/
config.json
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
{
"name": "Recalculate",
"tt_name": "module_name",
"description": "Compute values for Redcap calcuate fields by record, event, field, or any combination of. Exposes an API for recalculations too.",
"tt_description": "module_desc",
"documentation": "README.md",
"namespace": "UWMadison\\Recalculate",
"authors": [
{
"name": "Adam Nunez",
"email": "Adam.Nunez@ctri.wisc.edu",
"institution": "UW Madison - Center for Tobacco Research and Intervention"
}
],
"framework-version": 12,
"no-auth-pages": [
"api"
],
"no-csrf-pages": [
"api"
],
"links": {
"project": [
{
"name": "Recalculate",
"icon": "fa fa-calculator",
"url": "index.php",
"show-header-and-footer": true
}
]
},
"project-settings": [
{
"key": "desc-whitelist",
"name": "By default all users that have access to execute data quality rules have access to the Recalculate EM. If you would like to limit that access further you may define a whitelist of users below. Only users on the whitelist will be able to use the Recalculate EM.",
"tt_name": "module_whitelist",
"type": "descriptive"
},
{
"key": "user-whitelist",
"name": "User",
"tt_name": "module_user",
"type": "user-list",
"repeatable": true
},
{
"key": "cron",
"type": "textarea",
"hidden": true
}
],
"system-settings": [
{
"key": "memory",
"name": "<b>Increase Usable Memory:</b><br>In MegaBytes (MB). Set PHP's 'memory_limit' to this value when performing recalculations. Useful if a project is reporting a memory issue when using this EM",
"tt_name": "module_mem",
"type": "text"
}
],
"crons": [
{
"cron_name": "recalculate_user",
"cron_description": "Check for user configured recalculate crons",
"method": "run_cron",
"cron_frequency": 60,
"cron_max_run_time": 86400
}
],
"compatibility": {
"redcap-version-min": "13.4.0"
}
}