mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
Tweaked by tabbott to fix a refactoring bug, set the default to True, fix the real-time sync, and add tests for this. Fixes #2355.
20 lines
445 B
Python
20 lines
445 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('zerver', '0048_enter_sends_default_to_false'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='userprofile',
|
|
name='pm_content_in_desktop_notifications',
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
]
|