From cb82aeffdeb28b332bf8e3c9d4404ced9cb61f6e Mon Sep 17 00:00:00 2001 From: moanos Date: Wed, 1 Oct 2025 05:33:49 +0200 Subject: [PATCH] fix: use correct new status --- src/fellchensammlung/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fellchensammlung/models.py b/src/fellchensammlung/models.py index 4f661e2..4681d8e 100644 --- a/src/fellchensammlung/models.py +++ b/src/fellchensammlung/models.py @@ -560,7 +560,7 @@ class AdoptionNotice(models.Model): def set_unchecked(self): self.last_checked = timezone.now() - self.adoption_notice_status = AdoptionNoticeStatusChoices.Disabled.UNCHECKED + self.adoption_notice_status = AdoptionNoticeStatusChoices.AwaitingAction.UNCHECKED self.save() for subscription in self.get_subscriptions():