gauge/app/controllers/application_controller.rb

36 lines
774 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
2015-10-06 17:26:24 +03:00
before_action :set_locale
private
def set_locale
I18n.locale = params[:locale] || I18n.default_locale
end
protected
2015-10-06 17:26:24 +03:00
def self.default_url_options(options={})
if I18n.locale != I18n.default_locale
options.merge({locale: I18n.locale})
else
options
end
end
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