Skip to content
Snippets Groups Projects
Unverified Commit 2a93457b authored by Noah Moss's avatar Noah Moss Committed by GitHub
Browse files

fix indentation of ldap function (#27467)

parent 34488adb
No related branches found
No related tags found
No related merge requests found
......@@ -43,21 +43,21 @@
[{:keys [attributes first-name last-name email]}]
(when-let [user (db/select-one [User :id :last_login :first_name :last_name :login_attributes :is_active]
:%lower.email (u/lower-case-en email))]
(let [syncable-attributes (syncable-user-attributes attributes)
old-first-name (:first_name user)
old-last-name (:last_name user)
user-changes (merge
(when-not (= syncable-attributes (:login_attributes user))
{:login_attributes syncable-attributes})
(when (not= first-name old-first-name)
{:first_name first-name})
(when (not= last-name old-last-name)
{:last_name last-name}))]
(if (seq user-changes)
(do
(db/update! User (:id user) user-changes)
(db/select-one [User :id :last_login :is_active] :id (:id user))) ; Reload updated user
user))))
(let [syncable-attributes (syncable-user-attributes attributes)
old-first-name (:first_name user)
old-last-name (:last_name user)
user-changes (merge
(when-not (= syncable-attributes (:login_attributes user))
{:login_attributes syncable-attributes})
(when (not= first-name old-first-name)
{:first_name first-name})
(when (not= last-name old-last-name)
{:last_name last-name}))]
(if (seq user-changes)
(do
(db/update! User (:id user) user-changes)
(db/select-one [User :id :last_login :is_active] :id (:id user))) ; Reload updated user
user))))
(defenterprise-schema find-user :- (s/maybe EEUserInfo)
"Get user information for the supplied username."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment