fix: enable email notification by default for new users (#7521)
This commit is contained in:
parent
1458c758a3
commit
99f9337f35
1 changed files with 5 additions and 5 deletions
|
|
@ -276,9 +276,9 @@ def create_user_notification(sender, instance, created, **kwargs):
|
||||||
|
|
||||||
UserNotificationPreference.objects.create(
|
UserNotificationPreference.objects.create(
|
||||||
user=instance,
|
user=instance,
|
||||||
property_change=False,
|
property_change=True,
|
||||||
state_change=False,
|
state_change=True,
|
||||||
comment=False,
|
comment=True,
|
||||||
mention=False,
|
mention=True,
|
||||||
issue_completed=False,
|
issue_completed=True,
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue