mirror of
https://github.com/zulip/zulip.git
synced 2025-10-30 11:33:51 +00:00
This commit adds create_web_public_stream_policy field to Realm table which controls the roles that can create web-public streams and by default its value is set to POLICY_OWNERS_ONLY.
19 lines
416 B
Python
19 lines
416 B
Python
# Generated by Django 3.2.7 on 2021-10-04 06:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("zerver", "0360_merge_0358_0359"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="realm",
|
|
name="create_web_public_stream_policy",
|
|
field=models.PositiveSmallIntegerField(default=7),
|
|
),
|
|
]
|