mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-12 22:25:44 -04:00
12 lines
397 B
Python
12 lines
397 B
Python
from django.conf import settings
|
|
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})')
|