mirror of
https://github.com/zulip/zulip.git
synced 2025-10-28 18:43:52 +00:00
This commit replaces the `create_stream_by_admins_only` setting with a new `create_stream_policy` setting, which mirroring the structure of the existing `invite_to_stream_policy`. This is important preparation for migrating the waiting period feature to be its own independent setting. Fixes #12236.
19 lines
423 B
Python
19 lines
423 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.20 on 2019-05-06 13:15
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0217_migrate_create_stream_policy'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='realm',
|
|
name='create_stream_by_admins_only',
|
|
),
|
|
]
|