summaryrefslogtreecommitdiff
path: root/users/app/controllers/application_controller.rb
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-10-30 12:32:10 +0100
committerAzul <azul@leap.se>2012-10-30 12:32:10 +0100
commit194e924cb7c36eafa01b68c74774505e170e47ac (patch)
treed6f655010c2cc25b31e1b95b2cef78c962f9c84f /users/app/controllers/application_controller.rb
parent3ba2e664a26e96a93c8640b57241af6386db361e (diff)
adding in warden with a basic strategy
currently failing because we are not setting the content-type header.
Diffstat (limited to 'users/app/controllers/application_controller.rb')
-rw-r--r--users/app/controllers/application_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/app/controllers/application_controller.rb b/users/app/controllers/application_controller.rb
index 64e1a55..8388dda 100644
--- a/users/app/controllers/application_controller.rb
+++ b/users/app/controllers/application_controller.rb
@@ -4,7 +4,7 @@ class ApplicationController < ActionController::Base
private
def current_user
- @current_user ||= User.find(session[:user_id]) if session[:user_id]
+ @current_user ||= env['warden'].user
end
helper_method :current_user