diff --git a/opentech/apply/activity/messaging.py b/opentech/apply/activity/messaging.py index 8d786700c3b4df5d35d16556647b97cf0266cd93..137c2fb02fde86e36d287606a68d0ef0f249ce63 100644 --- a/opentech/apply/activity/messaging.py +++ b/opentech/apply/activity/messaging.py @@ -214,7 +214,13 @@ class ActivityAdapter(AdapterBase): def extra_kwargs(self, message_type, submission, submissions, **kwargs): from .models import INTERNAL - if message_type in [MESSAGES.OPENED_SEALED, MESSAGES.REVIEWERS_UPDATED, MESSAGES.SCREENING]: + if message_type in [ + MESSAGES.OPENED_SEALED, + MESSAGES.REVIEWERS_UPDATED, + MESSAGES.SCREENING, + MESSAGES.REVIEW_OPINION, + MESSAGES.BATCH_REVIEWERS_UPDATED, + ]: return {'visibility': INTERNAL} submission = submission or submissions[0]