23 lines
602 B
Python
23 lines
602 B
Python
# Generated manually for is_admin_join field
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('meetings', '0008_alter_appointmentrequest_jitsi_moderator_token_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='appointmentrequest',
|
|
name='is_admin_join',
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text='When True, participants are allowed to join the meeting. Admin must join first and set this to True.'
|
|
),
|
|
),
|
|
]
|
|
|