forked from ZcashFoundation/zebra
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Dyte private calls (ZcashFoundation#317)
- Loading branch information
Showing
12 changed files
with
877 additions
and
19,538 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
py/dj/apps/dyte/migrations/0005_creatormeeting_secret_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.2.11 on 2024-07-20 06:38 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dyte', '0004_auto_20231111_1912'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='creatormeeting', | ||
name='secret', | ||
field=models.UUIDField(editable=False, help_text='Secret UUID used to join private', null=True, unique=True), | ||
), | ||
migrations.AlterField( | ||
model_name='creatormeeting', | ||
name='meeting_type', | ||
field=models.CharField(choices=[('private', 'Private'), ('broadcast', 'Broadcast'), ('ppv', 'Pay Per View'), ('subscribers-only', 'Subscribers Only')], default='subscribers-only', max_length=20), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.11 on 2024-07-20 19:59 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('dyte', '0005_creatormeeting_secret_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='creatormeeting', | ||
name='e2ee', | ||
field=models.BooleanField(default=False), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.