mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
from django.apps import AppConfig
 | 
						|
from django.utils.translation import gettext_lazy as _
 | 
						|
 | 
						|
 | 
						|
class AuthenticationConfig(AppConfig):
 | 
						|
    name = 'authentication'
 | 
						|
    verbose_name = _('App Authentication')
 | 
						|
 | 
						|
    def ready(self):
 | 
						|
        from . import signal_handlers  # noqa
 | 
						|
        from . import tasks  # noqa
 | 
						|
        from . import notifications  # noqa
 | 
						|
        super().ready()
 |