Files
zulip/zerver/migrations/0138_userprofile_realm_name_in_notifications.py
Roman Godov b875fe07eb settings: Added setting to turn on and off realm name in email subject.
Users having only account in one realm will not be distracted by realm
name in subject lines of every email.  Users who have multiple
accounts in realms can turn this setting on and receive a
corresponding realm name in email's subject.

Tweaked by tabbott to rebase and address a few small issues.

Fixes #5489.
2018-02-05 18:01:54 -08:00

21 lines
480 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2018-01-21 08:47
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0137_realm_upload_quota_gb'),
]
operations = [
migrations.AddField(
model_name='userprofile',
name='realm_name_in_notifications',
field=models.BooleanField(default=False),
),
]