1
0
Fork 0
mirror of synced 2024-06-01 10:09:49 +12:00
ArchiveBox/archivebox/core/auth.py

17 lines
302 B
Python

__package__ = 'archivebox.core'
import os
from django.conf import settings
from ..config 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)