mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
10 lines
363 B
Python
10 lines
363 B
Python
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})')
|