mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00

- rename PAPERLESS_TIKA to PAPERLESS_TIKA_ENABLED - all other env params now start with PAPERLESS_TIKA - convert_to_pdf as class instance method - smaller details Signed-off-by: Jo Vandeginste <Jo.Vandeginste@kuleuven.be>
15 lines
438 B
Python
15 lines
438 B
Python
from django.apps import AppConfig
|
|
from django.conf import settings
|
|
from paperless_tika.signals import tika_consumer_declaration
|
|
|
|
|
|
class PaperlessTikaConfig(AppConfig):
|
|
name = "paperless_tika"
|
|
|
|
def ready(self):
|
|
from documents.signals import document_consumer_declaration
|
|
|
|
if settings.PAPERLESS_TIKA_ENABLED:
|
|
document_consumer_declaration.connect(tika_consumer_declaration)
|
|
AppConfig.ready(self)
|