mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	This commit adds new realm setting to control adding "(guest)" indicator to names of guest users in the UI. Fixes part of #26700.
		
			
				
	
	
		
			18 lines
		
	
	
		
			452 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			452 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 4.2.5 on 2023-09-13 11:12
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0477_alter_realmuserdefault_automatically_follow_topics_policy_and_more"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="realm",
 | 
						|
            name="enable_guest_user_indicator",
 | 
						|
            field=models.BooleanField(default=True),
 | 
						|
        ),
 | 
						|
    ]
 |