akkounts/app/services/ldap_manager/update_email.rb
Râu Cao f74227fedb
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
Allow users to set/update their display name in LDAP
2023-05-27 19:59:49 +02:00

13 lines
217 B
Ruby

module LdapManager
class UpdateEmail < LdapManagerService
def initialize(dn, address)
@dn = dn
@address = address
end
def call
replace_attribute @dn, :mail, @address
end
end
end