2012-08-29 13:21:56 +00:00
|
|
|
class ApplicationController < ActionController::Base
|
2016-04-06 02:23:15 +00:00
|
|
|
include ApplicationHelper
|
|
|
|
|
|
2012-08-29 13:21:56 +00:00
|
|
|
protect_from_forgery
|
2014-01-13 22:48:55 +00:00
|
|
|
|
|
|
|
|
before_filter :prepare_gon
|
|
|
|
|
|
|
|
|
|
def prepare_gon
|
2016-01-14 10:49:02 +00:00
|
|
|
@olark_enabled = false
|
|
|
|
|
gon.olark_box_start_hidden = false
|
2014-01-13 22:48:55 +00:00
|
|
|
gon.prefix = ENV['RAILS_RELATIVE_URL_ROOT'] || '/'
|
|
|
|
|
end
|
2012-08-29 13:21:56 +00:00
|
|
|
end
|