mirror of https://github.com/jumpserver/jumpserver
Merge pull request #10121 from jumpserver/pr@v2.28@fix_ldapuserimport_v2.28
fix: 修复 LDAP 导入用户时指定其他组织,还会导入到 Default 组织的问题pull/10275/head
commit
e90d8c8561
|
@ -4,6 +4,7 @@
|
||||||
from celery import shared_task
|
from celery import shared_task
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
|
from django.db import transaction
|
||||||
|
|
||||||
from users.notifications import PasswordExpirationReminderMsg
|
from users.notifications import PasswordExpirationReminderMsg
|
||||||
from ops.celery.utils import (
|
from ops.celery.utils import (
|
||||||
|
@ -80,6 +81,7 @@ def check_user_expired_periodic():
|
||||||
|
|
||||||
|
|
||||||
@shared_task
|
@shared_task
|
||||||
|
@transaction.atomic
|
||||||
def import_ldap_user():
|
def import_ldap_user():
|
||||||
logger.info("Start import ldap user task")
|
logger.info("Start import ldap user task")
|
||||||
util_server = LDAPServerUtil()
|
util_server = LDAPServerUtil()
|
||||||
|
|
Loading…
Reference in New Issue