Improve cross-platform group integration
This commit is contained in:
15
core/migrations/0045_user_allow_contacts_to_create_tasks.py
Normal file
15
core/migrations/0045_user_allow_contacts_to_create_tasks.py
Normal file
@@ -0,0 +1,15 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("core", "0044_userxmppsecuritysettings_encrypt_component_messages_with_omemo"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="user",
|
||||
name="allow_contacts_to_create_tasks",
|
||||
field=models.BooleanField(default=True),
|
||||
),
|
||||
]
|
||||
@@ -0,0 +1,15 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("core", "0045_user_allow_contacts_to_create_tasks"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="externalchatlink",
|
||||
name="provider",
|
||||
field=models.CharField(default="mock", max_length=64),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user