mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
9 lines
220 B
Ruby
9 lines
220 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ApplicationController < ActionController::Base
|
|
before_action :set_google_analytics_id
|
|
|
|
def set_google_analytics_id
|
|
@google_analytics_id = ENV['GOOGLE_ANALYTICS_ID']
|
|
end
|
|
end
|