Flowdock
build_path_query() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/uri/ldap.rb, line 92
    def build_path_query
      @path = '/' + @dn

      query = []
      [@extensions, @filter, @scope, @attributes].each do |x|
        next if !x && query.size == 0
        query.unshift(x)
      end
      @query = query.join('?')
    end
Register or log in to add new notes.