Files
zulip/zerver/migrations/0319_realm_giphy_rating.py
Aman Agrawal 802c450b3f realm: Add setting to configure GIPHY rating.
Organization admins can use this setting to restrict the maximum
rating of GIFs that will be retrieved from GIPHY. Also, there
is option to disable GIPHY too.
2021-04-14 10:29:39 -07:00

19 lines
416 B
Python

# Generated by Django 3.1.7 on 2021-03-31 10:06
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0318_remove_realm_invite_by_admins_only"),
]
operations = [
migrations.AddField(
model_name="realm",
name="giphy_rating",
field=models.PositiveSmallIntegerField(default=2),
),
]