Coorection d'un bug dans l'application des questions

This commit is contained in:
Jean-Marie Favreau 2024-04-16 11:32:36 +02:00
parent 37393eea13
commit 96143c03a4
1 changed files with 8 additions and 6 deletions

View File

@ -910,13 +910,15 @@ class ModerationAnswer(models.Model):
def valid_event(self, event):
if event.tags:
for t in self.adds_tags:
if t not in event.tags:
return False
if self.adds_tags:
for t in self.adds_tags:
if t not in event.tags:
return False
for t in self.removes_tags:
if t in event.tags:
return False
if self.removes_tags:
for t in self.removes_tags:
if t in event.tags:
return False
return True
else: