Method: Gitlab::Auth::Ldap::DN#method_missing

Defined in:
lib/gitlab/auth/ldap/dn.rb

#method_missing(method, *args, &block) ⇒ Object (private)

Proxy all other requests to the string object, because a DN is mainly used within the library as a string rubocop:disable GitlabSecurity/PublicSend



291
292
293
# File 'lib/gitlab/auth/ldap/dn.rb', line 291

def method_missing(method, *args, &block)
  @dn.send(method, *args, &block)
end