mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
7 lines
No EOL
198 B
Ruby
7 lines
No EOL
198 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 |