We Recommend

The Rails Way The Rails Way
Now, for the first time, there’s a comprehensive, authoritative guide to building production-quality software with Rails. Pioneering Rails developer Obie Fernandez and a team of experts illuminate the entire Rails API, along with the Ruby idioms, design approaches, libraries, and plug-ins that make Rails so valuable.


Posted By

winson on 04/30/07


Tagged

textmate controller application


Versions (?)


Current user


Published in: Rails 


  1. protected
  2. def current_engineer
  3. Engineer.find(session[:user])
  4. end
  5.  
  6. def current_user
  7. Employee.find(session[:user])
  8. end
  9.  
  10. def check_user_authentication
  11. unless session[:user]
  12. redirect_to :controller => 'account', :action => 'login'
  13. end
  14. end

Report this snippet 

You need to login to post a comment.