From 0935dd6865d4e8fcf89829fa8e53c03656c799b7 Mon Sep 17 00:00:00 2001 From: Niklas Mohrin Date: Tue, 2 Aug 2022 12:03:30 +0200 Subject: [PATCH] helpful comment --- evap/evaluation/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/evap/evaluation/models.py b/evap/evaluation/models.py index 7fe1e1a821..8128b93036 100644 --- a/evap/evaluation/models.py +++ b/evap/evaluation/models.py @@ -1447,6 +1447,8 @@ def will_be_private(self): def will_be_public(self): return self.review_decision == self.ReviewDecision.PUBLIC + # Once evaluation results are published, the review decision is executed + # and thus, an answer _is_ private or _is_ public from that point on. is_private = will_be_private is_public = will_be_public