Files
zulip/zerver/migrations/0192_customprofilefieldvalue_rendered_value.py
Hemanth V. Alluri 6b1d724f5c zerver: Add bugdown rendering for text custom profile fields.
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.
2018-11-29 09:47:32 -08:00

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),
),
]