From 9d7cd517e8a00049357ce6ec4b65cb5a12dc2f24 Mon Sep 17 00:00:00 2001 From: Jesse Morgan Date: Sat, 9 Apr 2016 09:51:01 -0700 Subject: Implementing CCBProgressReporter This reporter updates two pairs of user-defined fields on an Individual Profile. The first pair are pulldown & date fields used to track the assessment results. The second pair are updated after each chapter is completed. --- src/com/p4square/grow/ccb/ChurchCommunityBuilderIntegrationDriver.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/com/p4square/grow/ccb/ChurchCommunityBuilderIntegrationDriver.java') diff --git a/src/com/p4square/grow/ccb/ChurchCommunityBuilderIntegrationDriver.java b/src/com/p4square/grow/ccb/ChurchCommunityBuilderIntegrationDriver.java index 48d143c..fc6148f 100644 --- a/src/com/p4square/grow/ccb/ChurchCommunityBuilderIntegrationDriver.java +++ b/src/com/p4square/grow/ccb/ChurchCommunityBuilderIntegrationDriver.java @@ -41,7 +41,8 @@ public class ChurchCommunityBuilderIntegrationDriver implements IntegrationDrive mAPI = api; - mProgressReporter = new CCBProgressReporter(mAPI); + final CustomFieldCache cache = new CustomFieldCache(mAPI); + mProgressReporter = new CCBProgressReporter(mAPI, cache); } catch (URISyntaxException e) { throw new RuntimeException(e); -- cgit v1.2.3