Files
discourse/app/helpers/common_helper.rb
2013-11-20 13:10:08 +01:00

8 lines
195 B
Ruby

module CommonHelper
def render_google_analytics_code
if Rails.env == "production" && SiteSetting.ga_tracking_code.present?
render partial: "common/google_analytics"
end
end
end