@@ -32,6 +32,7 @@ class ParatooService {
32
32
static final List DEFAULT_MODULES =
33
33
[' Plot Selection and Layout' , ' Plot Description' , ' Opportune' ]
34
34
static final List ADMIN_ONLY_PROTOCOLS = [' Plot Selection' ]
35
+ static final String INTERVENTION_PROTOCOL_TAG = ' intervention'
35
36
36
37
GrailsApplication grailsApplication
37
38
SettingService settingService
@@ -66,7 +67,7 @@ class ParatooService {
66
67
projects. findAll{it. protocols}
67
68
}
68
69
69
- private static List findProjectProtocols (ParatooProject project ) {
70
+ private List findProjectProtocols (ParatooProject project ) {
70
71
log. debug " Finding protocols for ${ project.id} ${ project.name} "
71
72
List<ActivityForm > protocols = []
72
73
@@ -77,6 +78,11 @@ class ParatooService {
77
78
if (! project. isParaooAdmin()) {
78
79
protocols = protocols. findAll{! (it. name in ADMIN_ONLY_PROTOCOLS )}
79
80
}
81
+ // Temporarily exclude intervention protocols until they are ready
82
+ if (grailsApplication. config. getProperty(' paratoo.excludeInterventionProtocols' , Boolean . class, true )) {
83
+ protocols = protocols. findAll{! (INTERVENTION_PROTOCOL_TAG in it. tags)}
84
+ }
85
+
80
86
}
81
87
protocols
82
88
}
@@ -304,7 +310,7 @@ class ParatooService {
304
310
String guid = protocol. attributes. identifier
305
311
guids << guid
306
312
String name = protocol. attributes. name
307
- ParatooProtocolConfig protocolConfig = getProtocolConfig(id )
313
+ ParatooProtocolConfig protocolConfig = getProtocolConfig(guid )
308
314
ActivityForm form = ActivityForm . findByExternalId(guid)
309
315
if (! form) {
310
316
form = new ActivityForm ()
0 commit comments