Files
zulip/zerver/migrations/0663_realm_enable_guest_user_dm_warning.py
Vector73 cb6f0fd63c realm: Add setting to notify user on DMing guest.
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>
2025-02-06 12:15:41 -08:00

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),
),
]