aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/application_controller.rb
blob: c34b9f99e13a9b368cd0cd6f49f5c8cfd3abbc2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class ApplicationController < ActionController::Base
  protect_from_forgery with: :null_session

  require 'sso'

  before_action :current_user

  protected

  def current_user
    @current_user ||= User.find_by(external_id: session[:current_user]) if session[:current_user].present?
  end
  helper_method :current_user
end