Sha256: fd6ae743d9404a6592eb69303f53a862873c08b64db20ea7fecbf7d356dcc6c9

Contents?: true

Size: 804 Bytes

Versions: 1

Compression:

Stored size: 804 Bytes

Contents

# -*- coding: utf-8 -*-
=begin rdoc
Please see README.rdoc
=end

require 'sixarm_ruby_current_user_id'

module CurrentUser

 include CurrentUserId


  # Get the current user.
  # 
  # This calls User.find with the current_user_id
  #
  # The current user is memoized as @current_user.
  # To reload, pass :reload => true
  #
  # Return the current user, or raise an exception if not found
  
  def current_user(ops={})
    if ops[:reload] then @current_user=nil end
    @current_user ||= User.find(self.current_user_id)
  end
  

  # Is there a current user in the Rails session?
  
  def current_user?
    !!self.current_user 
  end


  # Set the current user
  # Return the current user
  
  def current_user=(user)
    self.current_user_id = (user ? user.id : nil)
    @current_user = user
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sixarm_ruby_current_user-1.3.6 lib/sixarm_ruby_current_user.rb