mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
This commit adds a new setting 'move_messages_between_streams_policy` for controlling who can move messages from one stream to other.
19 lines
424 B
Python
19 lines
424 B
Python
# Generated by Django 3.1.7 on 2021-04-09 14:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("zerver", "0319_realm_giphy_rating"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="realm",
|
|
name="move_messages_between_streams_policy",
|
|
field=models.PositiveSmallIntegerField(default=2),
|
|
),
|
|
]
|