realm: Allow everyone to delete their own messages by default.

This commit updates default for delete_own_message_policy
setting to "Everyone" as it is helpful to allow everyone
to delete their own messages in a new organization where
users might be using Zulip for the first time.
This commit is contained in:
Sahil Batra 2024-02-27 23:43:37 +05:30 committed by Tim Abbott
parent 4fbc137c2b
commit 0669e4f631
2 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name="realm",
name="delete_own_message_policy",
field=models.PositiveSmallIntegerField(default=2),
field=models.PositiveSmallIntegerField(default=5),
),
]

View File

@ -242,7 +242,7 @@ class Realm(models.Model): # type: ignore[django-manager-missing] # django-stub
create_web_public_stream_policy = models.PositiveSmallIntegerField(default=POLICY_OWNERS_ONLY)
# Who in the organization is allowed to delete messages they themselves sent.
delete_own_message_policy = models.PositiveSmallIntegerField(default=POLICY_ADMINS_ONLY)
delete_own_message_policy = models.PositiveSmallIntegerField(default=POLICY_EVERYONE)
# Who in the organization is allowed to edit topics of any message.
edit_topic_policy = models.PositiveSmallIntegerField(default=POLICY_EVERYONE)