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(
|
||||
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,
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue