mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
14 lines
393 B
Ruby
14 lines
393 B
Ruby
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_code
|
|
if Rails.env.production? && SiteSetting.gtm_container_id.present?
|
|
render partial: "common/google_tag_manager"
|
|
end
|
|
end
|
|
end
|