mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Don't check changed passphrase if no passphrase set
This commit is contained in:
parent
c37f642cff
commit
a1cb67c4ce
@ -1,3 +1,4 @@
|
|||||||
|
from django.conf import settings
|
||||||
from django.core.checks import Warning, register
|
from django.core.checks import Warning, register
|
||||||
from django.db.utils import OperationalError
|
from django.db.utils import OperationalError
|
||||||
|
|
||||||
@ -8,6 +9,9 @@ def changed_password_check(app_configs, **kwargs):
|
|||||||
from documents.models import Document
|
from documents.models import Document
|
||||||
from paperless.db import GnuPG
|
from paperless.db import GnuPG
|
||||||
|
|
||||||
|
if not settings.PASSPHRASE:
|
||||||
|
return []
|
||||||
|
|
||||||
warning = (
|
warning = (
|
||||||
"At least one document:\n\n {}\n\nin your data store was encrypted "
|
"At least one document:\n\n {}\n\nin your data store was encrypted "
|
||||||
"with a password other than the one currently\nin use. This means "
|
"with a password other than the one currently\nin use. This means "
|
||||||
|
Loading…
x
Reference in New Issue
Block a user