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

Store the BBB link in the Pool model

This commit is contained in:
Yohann D'ANELLO
2021-01-21 17:55:20 +01:00
parent 56ad352e64
commit 35042f077f
5 changed files with 87 additions and 50 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 3.0.11 on 2021-01-21 16:47
import django.core.validators
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('participation', '0011_note'),
]
operations = [
migrations.AddField(
model_name='pool',
name='bbb_code',
field=models.CharField(blank=True, default='', help_text='The code of the form xxx-xxx-xxx at the end of the BBB link.', max_length=11, validators=[django.core.validators.RegexValidator('[a-z]{3}-[a-z]{3}-[a-z]{3}')], verbose_name='BigBlueButton code'),
),
]