mirror of
https://github.com/edcommonwealth/ecp.org.git
synced 2026-03-07 21:48:13 -08:00
7 lines
189 B
Ruby
7 lines
189 B
Ruby
class ApplicationController < ActionController::Base
|
|
before_action :set_google_analytics_id
|
|
|
|
def set_google_analytics_id
|
|
@google_analytics_id = ENV['GOOGLE_ANALYTICS_ID']
|
|
end
|
|
end
|