gauge/app/controllers/application_controller.rb

21 lines
488 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 16:59:34 +03:00
def sort_seed
if session[:random_sort_seed].present?
session[:random_sort_seed].to_i
else
session[:random_sort_seed] = Random.new_seed
end
end
2015-10-06 15:21:46 +03:00
end