mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:05:48 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
22 lines
616 B
Ruby
22 lines
616 B
Ruby
# frozen_string_literal: true
|
|
|
|
module CommonHelper
|
|
def render_google_universal_analytics_code
|
|
if Rails.env.production? && SiteSetting.ga_universal_tracking_code.present?
|
|
render partial: "common/google_universal_analytics"
|
|
end
|
|
end
|
|
|
|
def render_google_tag_manager_head_code
|
|
if Rails.env.production? && SiteSetting.gtm_container_id.present?
|
|
render partial: "common/google_tag_manager_head"
|
|
end
|
|
end
|
|
|
|
def render_google_tag_manager_body_code
|
|
if Rails.env.production? && SiteSetting.gtm_container_id.present?
|
|
render partial: "common/google_tag_manager_body"
|
|
end
|
|
end
|
|
end
|