[webdav] Add crednetials to user profile

This commit is contained in:
2024-10-20 16:06:19 -04:00
parent 0f0fb7cceb
commit 083e931a78
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,34 @@
# Generated by Django 4.2.16 on 2024-10-20 20:04
from django.db import migrations, models
import encrypted_field.fields
class Migration(migrations.Migration):
dependencies = [
("profiles", "0018_userprofile_todoist_user_id"),
]
operations = [
migrations.AddField(
model_name="userprofile",
name="webdav_auto_import",
field=models.BooleanField(default=False),
),
migrations.AddField(
model_name="userprofile",
name="webdav_pass",
field=encrypted_field.fields.EncryptedField(blank=True, null=True),
),
migrations.AddField(
model_name="userprofile",
name="webdav_url",
field=models.CharField(blank=True, max_length=255, null=True),
),
migrations.AddField(
model_name="userprofile",
name="webdav_user",
field=models.CharField(blank=True, max_length=255, null=True),
),
]