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

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

module Gitlab
  module WebHooks
    GITLAB_EVENT_HEADER = 'X-Gitlab-Event'
    GITLAB_INSTANCE_HEADER = 'X-Gitlab-Instance'
    GITLAB_UUID_HEADER = 'X-Gitlab-Webhook-UUID'
  end
end