mirror of
https://github.com/makeplane/plane.git
synced 2026-05-08 09:00:11 -05:00
fix: enable email notification by default for new users (#7521)
This commit is contained in:
committed by
GitHub
parent
1458c758a3
commit
99f9337f35
@@ -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,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user