gauge/app/controllers/application_controller.rb

13 lines
316 B
Ruby
Raw Normal View History

2015-10-06 15:21:46 +03:00
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
protected
def current_ip_address
# request.env['HTTP_X_FORWARDED_FOR'] ||
request.remote_ip
end
2015-10-06 15:21:46 +03:00
end