8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-19 09:02:35 +00:00

Merge branch '343-ldap_sync-and-ldap_rebuild-do-not-regenerate-service-users-2' into 'dev'

fix: Resolve "ldap_sync and ldap_rebuild do not regenerate service-users"

See merge request re2o/re2o!618
This commit is contained in:
Jean-Romain Garnier 2021-09-05 12:58:00 +00:00
commit ca2e999089
2 changed files with 10 additions and 5 deletions

View file

@ -21,9 +21,8 @@ from base64 import decodebytes
from django.conf import settings
from django.core.management.base import BaseCommand, CommandError
from ldap_sync.models import (synchronise_serviceuser, synchronise_user,
synchronise_usergroup)
from users.models import ListRight, User
from users.models import User, ListRight, ServiceUser
from ldap_sync.models import synchronise_user, synchronise_serviceuser, synchronise_usergroup
def split_lines(lines):
@ -95,6 +94,8 @@ def sync_ldap():
synchronise_user(sender=User, instance=u)
for lr in ListRight.objects.all():
synchronise_usergroup(sender=ListRight, instance=lr)
for service_user in ServiceUser.objects.all():
synchronise_serviceuser(sender=ServiceUser, instance=service_user)
class Command(BaseCommand):

View file

@ -19,8 +19,8 @@
#
from django.core.management.base import BaseCommand, CommandError
from ldap_sync.models import synchronise_user
from users.models import User
from users.models import User, ListRight, ServiceUser
from ldap_sync.models import synchronise_user, synchronise_serviceuser, synchronise_usergroup
class Command(BaseCommand):
@ -40,3 +40,7 @@ class Command(BaseCommand):
def handle(self, *args, **options):
for user in User.objects.all():
synchronise_user(sender=User, instance=user)
for lr in ListRight.objects.all():
synchronise_usergroup(sender=ListRight, instance=lr)
for service_user in ServiceUser.objects.all():
synchronise_serviceuser(sender=ServiceUser, instance=service_user)