Disable webhooks and email notifications in non-prod envs

This commit is contained in:
Stanko K.R.
2025-11-18 16:15:54 +01:00
parent ab07488fbd
commit 1bd4a1b4e7
+7
View File
@@ -82,6 +82,13 @@ class Import
copy_notification_bundles
fix_links
unless Rails.env.production?
# Don't spam real webhooks
Webhook.all.update_all(active: false)
# Don't send emails to real users
User::Settings.all.update_all(bundle_email_frequency: :never)
end
end
end
end