Skip to content
Snippets Groups Projects
Commit 0541ee2d authored by Todd Dembrey's avatar Todd Dembrey Committed by Fredrik Jonsson
Browse files

Dont show applicants the names of the assigned reviewers

parent 4cc85acc
No related branches found
No related tags found
No related merge requests found
...@@ -99,7 +99,7 @@ class ActivityAdapter(AdapterBase): ...@@ -99,7 +99,7 @@ class ActivityAdapter(AdapterBase):
return [None] return [None]
def extra_kwargs(self, message_type, **kwargs): 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 from .models import INTERNAL
return {'visibility': INTERNAL} return {'visibility': INTERNAL}
return {} return {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment