Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-LDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-App-LDAP
Commits
9fbaa094
Verified
Commit
9fbaa094
authored
5 years ago
by
Nik | Klampfradler
Browse files
Options
Downloads
Patches
Plain Diff
Rename ldap sync function
parent
505f75a9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
aleksis/apps/ldap/apps.py
+2
-2
2 additions, 2 deletions
aleksis/apps/ldap/apps.py
aleksis/apps/ldap/util/ldap_sync.py
+1
-1
1 addition, 1 deletion
aleksis/apps/ldap/util/ldap_sync.py
with
3 additions
and
3 deletions
aleksis/apps/ldap/apps.py
+
2
−
2
View file @
9fbaa094
...
...
@@ -3,7 +3,7 @@ from django.db.models.signals import post_save
from
aleksis.core.util.apps
import
AppConfig
from
.util.ldap_sync
import
ldap_
create
_user
from
.util.ldap_sync
import
ldap_
sync_from
_user
class
LDAPConfig
(
AppConfig
):
name
=
"
aleksis.apps.ldap
"
...
...
@@ -12,4 +12,4 @@ class LDAPConfig(AppConfig):
def
ready
(
self
)
->
None
:
super
().
ready
()
User
=
get_user_model
()
post_save
.
connect
(
ldap_
create
_user
,
sender
=
User
)
post_save
.
connect
(
ldap_
sync_from
_user
,
sender
=
User
)
This diff is collapsed.
Click to expand it.
aleksis/apps/ldap/util/ldap_sync.py
+
1
−
1
View file @
9fbaa094
...
...
@@ -4,7 +4,7 @@ from django.contrib.auth import get_user_model
from
constance
import
config
def
ldap_
create
_user
(
sender
,
instance
,
created
,
raw
,
using
,
update_fields
,
**
kwargs
):
def
ldap_
sync_from
_user
(
sender
,
instance
,
created
,
raw
,
using
,
update_fields
,
**
kwargs
):
"""
Find ldap users by configurable matching fields and connect them to django users.
"""
Person
=
apps
.
get_model
(
"
core
"
,
"
Person
"
)
Group
=
apps
.
get_model
(
"
core
"
,
"
Group
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment