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

  private

  def current_user
    @current_user ||= env['warden'].user
  end
  helper_method :current_user

  def authorize
    redirect_to login_url, alert: "Not authorized" if current_user.nil?
  end
end