From 030bc03154631b5fb614ccebb6e8afd887dfca85 Mon Sep 17 00:00:00 2001 From: Raz Date: Wed, 16 Apr 2025 13:23:41 +0200 Subject: [PATCH] add a confirm if place signal on team reg --- tournaments/signals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tournaments/signals.py b/tournaments/signals.py index e485073..7743a48 100644 --- a/tournaments/signals.py +++ b/tournaments/signals.py @@ -192,6 +192,6 @@ def warn_team_walkout_status_change(sender, instance, **kwargs): @receiver(post_save, sender=TeamRegistration) def team_confirm_if_placed(sender, instance, **kwargs): - if instance.id is None or instance.tournament is None or instance.tournament.enable_online_registration is False: + if instance.id is None or instance.tournament is None: return instance.confirm_if_placed()