0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-13 16:21:57 -05:00

🔧 Clean unused LDAP var

Signed-off-by: mathieu.brunot <mathieu.brunot@monogramm.io>
This commit is contained in:
mathieu.brunot 2020-08-07 23:25:21 +02:00 committed by Andrey Antukh
parent 712563a984
commit 89f4fbfbb1

View file

@ -48,7 +48,6 @@
;; LDAP auth disabled by default. Set ldap-auth-host to enable
;:ldap-auth-host "ldap.mysupercompany.com"
;:ldap-auth-port 389
:ldap-auth-version "3"
;:ldap-bind-dn "cn=admin,dc=ldap,dc=mysupercompany,dc=com"
;:ldap-bind-password "verysecure"
;:ldap-auth-ssl false
@ -104,7 +103,6 @@
(s/def ::ldap-auth-email-attribute ::us/string)
(s/def ::ldap-auth-fullname-attribute ::us/string)
(s/def ::ldap-auth-avatar-attribute ::us/string)
(s/def ::ldap-auth-isactivedirectory ::us/boolean)
(s/def ::config
(s/keys :opt-un [::http-server-cors
@ -137,7 +135,6 @@
::image-process-max-threads
::ldap-auth-host
::ldap-auth-port
::ldap-auth-version
::ldap-bind-dn
::ldap-bind-password
::ldap-auth-ssl
@ -147,8 +144,7 @@
::ldap-auth-username-attribute
::ldap-auth-email-attribute
::ldap-auth-fullname-attribute
::ldap-auth-avatar-attribute
::ldap-auth-isactivedirectory]))
::ldap-auth-avatar-attribute]))
(defn env->config
[env]