1
0
Fork 0
mirror of synced 2024-06-26 18:10:24 +12:00
ArchiveBox/archivebox/core/auth_ldap.py

11 lines
363 B
Python
Raw Normal View History

from ..config import (
LDAP_CREATE_SUPERUSER
)
def create_user(sender, user=None, ldap_user=None, **kwargs):
if not user.id and LDAP_CREATE_SUPERUSER:
user.is_superuser = True
user.is_staff = True
print(f'[!] WARNING: Creating new user {user} based on LDAP user {ldap_user} (is_staff={user.is_staff}, is_superuser={user.is_superuser})')