Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fogbugz_import.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4a52edd83ef58fc4e54c2314670c863b97e46b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'fogbugz'

module Gitlab
  module FogbugzImport
    # Custom adapter to validate the URL before each request
    # This way we avoid DNS rebinds or other unsafe requests
    ::Fogbugz.adapter[:http] = HttpAdapter
  end
end