mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	This commit updates default for move_messages_between_streams_policy setting to "Members and above" as it is helpful to allow members to move messages between streams in new organizations where users might be using Zulip for first time.
		
			
				
	
	
		
			18 lines
		
	
	
		
			423 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			423 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 3.1.7 on 2021-04-09 14:37
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("zerver", "0319_realm_giphy_rating"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name="realm",
 | 
						|
            name="move_messages_between_streams_policy",
 | 
						|
            field=models.PositiveSmallIntegerField(default=1),
 | 
						|
        ),
 | 
						|
    ]
 |