Absolventa/ereignishorizont

View on GitHub
app/controllers/application_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ApplicationController < ActionController::Base

  protect_from_forgery with: :exception
  before_action :authorize
  before_action :set_time_zone

  private
  def current_user
    @current_user ||= User.find_by_auth_token( cookies[:auth_token]) if cookies[:auth_token]

  end
  helper_method :current_user

  def logged_in?
    current_user.present?
  end

  def authorize
    redirect_to login_path, alert: "Not authorized" unless logged_in?
  end

  def set_time_zone
    Time.zone = current_user.time_zone if current_user
  end
end