From 0541ee2d4536bb1a78ddd59ab6e502a2e984896b Mon Sep 17 00:00:00 2001
From: Todd Dembrey <todd.dembrey@torchbox.com>
Date: Thu, 6 Sep 2018 10:28:51 +0100
Subject: [PATCH] Dont show applicants the names of the assigned reviewers

---
 opentech/apply/activity/messaging.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opentech/apply/activity/messaging.py b/opentech/apply/activity/messaging.py
index 9670b2767..c0ceeea24 100644
--- a/opentech/apply/activity/messaging.py
+++ b/opentech/apply/activity/messaging.py
@@ -99,7 +99,7 @@ class ActivityAdapter(AdapterBase):
         return [None]
 
     def extra_kwargs(self, message_type, **kwargs):
-        if message_type == MESSAGES.OPENED_SEALED:
+        if message_type in [MESSAGES.OPENED_SEALED, MESSAGES.REVIEWERS_UPDATED]:
             from .models import INTERNAL
             return {'visibility': INTERNAL}
         return {}
-- 
GitLab