akkounts/app/services/ldap_manager/update_email.rb

13 lines
221 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