mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-03 16:37:48 +00:00
16 lines
281 B
Ruby
16 lines
281 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Tracking
|
|
module Helpers
|
|
def dnt_enabled?
|
|
Gitlab::Utils.to_boolean(request.headers['DNT'])
|
|
end
|
|
|
|
def trackable_html_request?
|
|
request.format.html? && !dnt_enabled?
|
|
end
|
|
end
|
|
end
|
|
end
|