mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 16:14:02 +00:00
Added a new realm setting, `topics_policy` and deprecated `mandatory_topics` setting as it now replaced by `topics_policy`. Fixes part of #33549.
17 lines
395 B
Python
17 lines
395 B
Python
# Generated by Django 5.1.7 on 2025-03-24 09:05
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zerver", "0709_navigationview"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="realm",
|
|
name="topics_policy",
|
|
field=models.PositiveSmallIntegerField(null=True),
|
|
),
|
|
]
|