chore: disable task notifications by default (#20518)

Relates to https://github.com/coder/internal/issues/1098

Currently task notifications are incredibly noisy. We should disable
them by default for the upcoming release whilst we iron them out.
This commit is contained in:
Danielle Maywood
2025-10-28 17:21:23 +00:00
committed by GitHub
parent cf93c34172
commit a1e7e105a4
2 changed files with 16 additions and 0 deletions
@@ -0,0 +1,8 @@
UPDATE notification_templates
SET enabled_by_default = true
WHERE id IN (
'8c5a4d12-9f7e-4b3a-a1c8-6e4f2d9b5a7c',
'3b7e8f1a-4c2d-49a6-b5e9-7f3a1c8d6b4e',
'bd4b7168-d05e-4e19-ad0f-3593b77aa90f',
'd4a6271c-cced-4ed0-84ad-afd02a9c7799'
);
@@ -0,0 +1,8 @@
UPDATE notification_templates
SET enabled_by_default = false
WHERE id IN (
'8c5a4d12-9f7e-4b3a-a1c8-6e4f2d9b5a7c',
'3b7e8f1a-4c2d-49a6-b5e9-7f3a1c8d6b4e',
'bd4b7168-d05e-4e19-ad0f-3593b77aa90f',
'd4a6271c-cced-4ed0-84ad-afd02a9c7799'
);