1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 03:39:34 +00:00
discourse/app/helpers/common_helper.rb

14 lines
389 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_analytics_code
if Rails.env.production? && SiteSetting.ga_tracking_code.present?
render partial: "common/google_analytics"
end
end
end