akkounts/app/services/ldap_manager_service.rb
Râu Cao d5ab532947
Some checks failed
continuous-integration/drone/push Build is failing
Store and retrieve avatars in/from LDAP exclusively
No need to keep them in two places at the same time. We can fetch them
from LDAP whenever we want to do something with them.
2023-09-06 20:42:26 +02:00

6 lines
119 B
Ruby

class LdapManagerService < LdapService
def suffix
@suffix ||= ENV["LDAP_SUFFIX"] || "dc=kosmos,dc=org"
end
end