jam-cloud/admin/app/controllers/application_controller.rb

14 lines
285 B
Ruby
Raw Permalink Normal View History

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