0 / 60 seg.

Which statement about this code will always be true?

class UserController < ActionController::Base
  def show
    @user = User.find_by_id(session[:user_id])
    @user ||= User.first
  end
end