mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	The MitUser model caused a constant series of little problems for users with mit.edu email addresses trying to sign up for different Zulip servers. The new implementation just uses conditionals on the realm object when selecting the confirmation template to use.
		
			
				
	
	
		
			18 lines
		
	
	
		
			333 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			333 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
from django.db import models, migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('zerver', '0025_realm_message_content_edit_limit'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.DeleteModel(
 | 
						|
            name='MitUser',
 | 
						|
        ),
 | 
						|
    ]
 |