Files
zulip/zerver/migrations/0159_realm_google_hangouts_domain.py
Vishnu Ks c9e932a7ce settings: Add support for Hangouts as the video chat provider.
The only thing that's annoying about this feature is that you need to
be a paying G Suite customer to use it.
2018-04-23 09:39:47 -07:00

21 lines
468 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.11 on 2018-04-23 16:37
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('zerver', '0158_realm_video_chat_provider'),
]
operations = [
migrations.AddField(
model_name='realm',
name='google_hangouts_domain',
field=models.TextField(default=''),
),
]