class ApplicationController < ActionController::Base protect_from_forgery before_filter :authenticate_user! before_filter :set_locale def set_locale I18n.locale = session[:language] || I18n.default_locale end protected def current_organisation current_user.organisation if current_user end helper_method :current_organisation def begin_of_association_chain current_organisation end # Overwriting the sign_out redirect path method def after_sign_out_path_for(resource_or_scope) new_user_session_path end end