mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 16:14:02 +00:00
Removed `invite_to_realm_policy` property, as the permission to invite other users to the organization is now controlled by `can_invite_users_group` setting.
17 lines
357 B
Python
17 lines
357 B
Python
# Generated by Django 5.0.9 on 2024-11-16 08:51
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zerver", "0627_alter_realm_can_invite_users_group"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name="realm",
|
|
name="invite_to_realm_policy",
|
|
),
|
|
]
|