mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-09-30 01:32:43 -05:00
Removed log components and introduced signals for tags & correspondents
This commit is contained in:
@@ -2,4 +2,15 @@ from django.apps import AppConfig
|
||||
|
||||
|
||||
class DocumentsConfig(AppConfig):
|
||||
name = 'documents'
|
||||
|
||||
name = "documents"
|
||||
|
||||
def ready(self):
|
||||
|
||||
from .signals import document_consumption_finished
|
||||
from .signals.handlers import set_correspondent, set_tags
|
||||
|
||||
document_consumption_finished.connect(set_tags)
|
||||
document_consumption_finished.connect(set_correspondent)
|
||||
|
||||
AppConfig.ready(self)
|
||||
|
Reference in New Issue
Block a user