mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-08-07 19:08:32 -05:00
15 lines
375 B
Python
15 lines
375 B
Python
from django.apps import AppConfig
|
|
|
|
from paperless_remote.signals import remote_consumer_declaration
|
|
|
|
|
|
class PaperlessRemoteParserConfig(AppConfig):
|
|
name = "paperless_remote"
|
|
|
|
def ready(self):
|
|
from documents.signals import document_consumer_declaration
|
|
|
|
document_consumer_declaration.connect(remote_consumer_declaration)
|
|
|
|
AppConfig.ready(self)
|