mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 20:13:46 +00:00 
			
		
		
		
	Removed `bot_creation_policy` property, as the permission to create bot users in the organization is now controlled by two new realm settings, `can_create_bots_group` and `can_create_write_only_bots_group`
		
			
				
	
	
		
			17 lines
		
	
	
		
			363 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			363 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 5.0.10 on 2025-01-27 11:24
 | |
| 
 | |
| from django.db import migrations
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
|     dependencies = [
 | |
|         ("zerver", "0658_alter_realm_can_create_bots_group_and_more"),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.RemoveField(
 | |
|             model_name="realm",
 | |
|             name="bot_creation_policy",
 | |
|         ),
 | |
|     ]
 |