From bd11b0e832267d57e54672cbb955c476aadd7c4d Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Sun, 15 Mar 2026 16:03:41 -0500 Subject: [PATCH] Change notification for account expiry to admin only. --- apps/m3u/tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/m3u/tasks.py b/apps/m3u/tasks.py index 996226ec..9c31fa75 100644 --- a/apps/m3u/tasks.py +++ b/apps/m3u/tasks.py @@ -3237,7 +3237,7 @@ def evaluate_profile_expiration_notification(profile): "exp_date": exp.isoformat(), }, "is_active": True, - "admin_only": False, + "admin_only": True, }, ) send_websocket_notification(notification) @@ -3280,7 +3280,7 @@ def evaluate_profile_expiration_notification(profile): "exp_date": exp.isoformat(), }, "is_active": True, - "admin_only": False, + "admin_only": True, }, ) send_websocket_notification(notification)