mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This is the first step of letting users use Zulip markdown in their SHORT_TEXT and LONG_TEXT custom profile fields, so that they can include emphasis, links, etc. This doesn't include any frontend logic yet, however.
		
			
				
	
	
		
			21 lines
		
	
	
		
			482 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			482 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
# Generated by Django 1.11.16 on 2018-11-14 12:15
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('zerver', '0191_realm_seat_limit'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='customprofilefieldvalue',
 | 
						|
            name='rendered_value',
 | 
						|
            field=models.TextField(default=None, null=True),
 | 
						|
        ),
 | 
						|
    ]
 |