Files
zulip/zerver/migrations/0171_userprofile_dense_mode.py
Tim Abbott 6967b6519d settings: Add a development-only setting for less dense mode.
This should make it easier for us to iterate on a less-dense Zulip.

We create two classes on body, less_dense_mode and more_dense_mode, so
that it's easy as we refactor to separate the two concepts from things
like colors that are independent.
2018-05-24 12:31:37 -07:00

21 lines
452 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2018-05-24 18:45
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0170_submessage'),
]
operations = [
migrations.AddField(
model_name='userprofile',
name='dense_mode',
field=models.BooleanField(default=True),
),
]