Files
zulip/zerver/migrations/0651_alter_realm_can_add_subscribers_group.py
Shubham Padia 3cdc9d8459 realm: Add can_add_subscribers_group as a setting.
This commit just adds the setting, the work to use this setting and
replace `invite_to_stream_policy` will be done in future commits.
2025-01-22 12:33:56 -08:00

23 lines
601 B
Python

# Generated by Django 5.0.10 on 2025-01-13 08:07
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0650_set_default_for_realm_can_add_subscribers_group"),
]
operations = [
migrations.AlterField(
model_name="realm",
name="can_add_subscribers_group",
field=models.ForeignKey(
on_delete=django.db.models.deletion.RESTRICT,
related_name="+",
to="zerver.usergroup",
),
),
]