mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This commit sets the default for user_list_style to USER_LIST_STYLE_WITH_AVATAR so that the organization level defaults for new users of this setting is set to show avatar in right sidebar for new orgs.
		
			
				
	
	
		
			23 lines
		
	
	
		
			618 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			618 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 4.0.6 on 2022-08-14 18:23
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0406_alter_realm_message_content_edit_limit_seconds"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="realmuserdefault",
 | 
						|
            name="user_list_style",
 | 
						|
            field=models.PositiveSmallIntegerField(default=3),
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="userprofile",
 | 
						|
            name="user_list_style",
 | 
						|
            field=models.PositiveSmallIntegerField(default=3),
 | 
						|
        ),
 | 
						|
    ]
 |