From a029c1d0dbf405dd5576f9d7b32b40934a390f1b Mon Sep 17 00:00:00 2001 From: wh1te909 <7434746+wh1te909@users.noreply.github.com> Date: Thu, 15 Aug 2024 18:40:19 +0000 Subject: [PATCH] set alert template when moving site to another client fixes #1975 --- api/tacticalrmm/clients/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api/tacticalrmm/clients/models.py b/api/tacticalrmm/clients/models.py index c18f5dc2..2d242a7b 100644 --- a/api/tacticalrmm/clients/models.py +++ b/api/tacticalrmm/clients/models.py @@ -133,6 +133,7 @@ class Site(BaseAuditModel): old_site.alert_template != self.alert_template or old_site.workstation_policy != self.workstation_policy or old_site.server_policy != self.server_policy + or old_site.client != self.client ): cache_agents_alert_template.delay()