mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 16:14:02 +00:00
Added `enable_guest_user_dm_warning` setting to decide whether clients should show a warning when a user is composing to a guest user in the organization. Fixes #30078. Co-authored-by: adnan-td <generaladnan139@gmail.com>
18 lines
448 B
Python
18 lines
448 B
Python
# Generated by Django 5.0.10 on 2025-02-06 13:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zerver", "0662_clear_realm_channel_fields_if_configured_channel_deactivated"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="realm",
|
|
name="enable_guest_user_dm_warning",
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
]
|