mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-11-04 03:27:12 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			361 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			361 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.apps import AppConfig
 | 
						|
 | 
						|
from paperless_text.signals import text_consumer_declaration
 | 
						|
 | 
						|
 | 
						|
class PaperlessTextConfig(AppConfig):
 | 
						|
 | 
						|
    name = "paperless_text"
 | 
						|
 | 
						|
    def ready(self):
 | 
						|
 | 
						|
        from documents.signals import document_consumer_declaration
 | 
						|
 | 
						|
        document_consumer_declaration.connect(text_consumer_declaration)
 | 
						|
 | 
						|
        AppConfig.ready(self)
 |