From 56a16be5fb51d8f6a8b04e9e7094aa7c57fb8547 Mon Sep 17 00:00:00 2001 From: hellekin Date: Tue, 6 Oct 2020 04:26:25 +0200 Subject: First pass at something visible This is a first version of the application, to go beyond simple authentication. --- app/controllers/application_controller.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'app/controllers/application_controller.rb') diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index c34b9f9..4e71ff8 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -7,6 +7,11 @@ class ApplicationController < ActionController::Base protected + def current_agent + @current_agent = session[:current_agent] || current_user.presence&.agents&.first&.name || 'IN COMMON' + end + helper_method :current_agent + def current_user @current_user ||= User.find_by(external_id: session[:current_user]) if session[:current_user].present? end -- cgit v1.2.3