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

tracking_helpers.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0374578531c18f397fb94f0bc81120fb05e3b4b (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module TrackingHelpers
  def stub_do_not_track(value)
    request.headers['DNT'] = value
  end
end