# File lib/sinatra/rabbit.rb, line 336
    def entry_points
      collections.values.select { |coll|
        coll.global? || driver.has_collection?(coll.name)
      }.inject([]) do |m, coll|
        url = api_url_for coll.operations[:index].path, :full
        m << [ coll.name, url ]
      end
    end