mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-01 16:46:16 +00:00
10 lines
214 B
Ruby
10 lines
214 B
Ruby
# 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
|