fix: enable email notification by default for new users (#7521)

This commit is contained in:
sriram veeraghanta 2025-07-31 13:02:41 +05:30 committed by GitHub
parent 1458c758a3
commit 99f9337f35
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -276,9 +276,9 @@ def create_user_notification(sender, instance, created, **kwargs):
UserNotificationPreference.objects.create(
user=instance,
property_change=False,
state_change=False,
comment=False,
mention=False,
issue_completed=False,
property_change=True,
state_change=True,
comment=True,
mention=True,
issue_completed=True,
)