mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 06:34:25 -04:00
14 lines
266 B
Python
14 lines
266 B
Python
__package__ = 'archivebox.core'
|
|
|
|
|
|
from ..config.legacy import (
|
|
LDAP
|
|
)
|
|
|
|
def register_signals():
|
|
|
|
if LDAP:
|
|
import django_auth_ldap.backend
|
|
from .auth_ldap import create_user
|
|
|
|
django_auth_ldap.backend.populate_user.connect(create_user)
|