1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-22 01:58:24 +02:00

Use a custom BBB url link, that is not necessary on visio.animath.live

This commit is contained in:
Yohann D'ANELLO
2021-01-22 18:25:37 +01:00
parent c06ae694cd
commit ea9d7cdd50
4 changed files with 28 additions and 11 deletions

View File

@ -0,0 +1,22 @@
# Generated by Django 3.0.11 on 2021-01-22 17:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('participation', '0003_team_motivation_letter'),
]
operations = [
migrations.RemoveField(
model_name='pool',
name='bbb_code',
),
migrations.AddField(
model_name='pool',
name='bbb_url',
field=models.CharField(blank=True, default='', help_text='The link of the BBB visio for this pool.', max_length=255, verbose_name='BigBlueButton URL'),
),
]