agenda-libre-ruby/app/controllers/application_controller.rb

30 lines
861 B
Ruby
Raw Normal View History

# The top level controller, where can be centralised almost everything
2013-11-13 23:09:38 +01:00
class ApplicationController < ActionController::Base
2018-01-01 17:52:33 +01:00
before_action :set_paper_trail_whodunnit, :set_filters
2013-11-13 23:09:38 +01:00
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
2017-11-11 12:44:09 +01:00
protect_from_forgery prepend: true, with: :exception
2014-09-20 17:20:40 +02:00
private
def set_locale
2015-11-10 23:29:05 +01:00
I18n.locale =
http_accept_language.compatible_language_from I18n.available_locales
2014-09-20 17:20:40 +02:00
end
# Mechanism to manage the region filter
def set_filters
if params.include? :region
session[:region] = params[:region] == 'all' ? nil : params[:region].to_i
end
params[:region] ||= session[:region]
end
protected
# Useful to manage absolute url in mails
def set_mailer_host
ActionMailer::Base.default_url_options[:host] = request.host_with_port
end
2013-11-13 23:09:38 +01:00
end