Ok, restart implementing this with just azure

[ci skip]
This commit is contained in:
shamoon
2025-04-18 11:38:36 -07:00
parent feb320cae9
commit 811bd66088
10 changed files with 253 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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)