mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-21 18:22:27 +02:00
13 lines
394 B
Python
13 lines
394 B
Python
from django.apps import AppConfig
|
|
from django.core.checks import register, Tags
|
|
|
|
|
|
class AuthenticationConfig(AppConfig):
|
|
name = 'allianceauth.authentication'
|
|
label = 'authentication'
|
|
|
|
def ready(self):
|
|
super(AuthenticationConfig, self).ready()
|
|
from allianceauth.authentication import checks, signals
|
|
register(Tags.security)(checks.check_login_scopes_setting)
|