mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-08-10 00:18:57 +00:00
Allows users to use OAuth tokens instead of passwords
This commit is contained in:
19
src/paperless_mail/migrations/0020_mailaccount_is_token.py
Normal file
19
src/paperless_mail/migrations/0020_mailaccount_is_token.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 4.1.7 on 2023-03-22 17:51
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
dependencies = [
|
||||
("paperless_mail", "0019_mailrule_filter_to"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="mailaccount",
|
||||
name="is_token",
|
||||
field=models.BooleanField(
|
||||
default=False, verbose_name="Is token authentication"
|
||||
),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user