discourse/app/helpers/common_helper.rb

8 lines
196 B
Ruby
Raw Normal View History

2013-02-11 06:34:14 -05:00
module CommonHelper
def render_google_analytics_code
if Rails.env == "production" && SiteSetting.ga_tracking_code.present?
render partial: "common/google_analytics"
2013-02-11 06:34:14 -05:00
end
end
end