mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
31 lines
881 B
Python
31 lines
881 B
Python
from django.apps import AppConfig
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class DocumentsConfig(AppConfig):
|
|
|
|
name = "documents"
|
|
|
|
verbose_name = _("Documents")
|
|
|
|
def ready(self):
|
|
from .signals import document_consumption_finished
|
|
from .signals.handlers import (
|
|
add_inbox_tags,
|
|
set_log_entry,
|
|
set_correspondent,
|
|
set_document_type,
|
|
set_tags,
|
|
add_to_index
|
|
)
|
|
|
|
document_consumption_finished.connect(add_inbox_tags)
|
|
document_consumption_finished.connect(set_correspondent)
|
|
document_consumption_finished.connect(set_document_type)
|
|
document_consumption_finished.connect(set_tags)
|
|
document_consumption_finished.connect(set_log_entry)
|
|
document_consumption_finished.connect(add_to_index)
|
|
|
|
AppConfig.ready(self)
|