From e75c285049c1a370b3bec38dbb82dd3b9d7b1fcc Mon Sep 17 00:00:00 2001 From: zhitomirskiyi Date: Wed, 9 Feb 2011 15:07:25 -0800 Subject: [PATCH] added created_at --- app/controllers/application_controller.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index ef025efb9..fd52f5913 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -36,6 +36,7 @@ class ApplicationController < ActionController::Base str = "controller=#{self.class} action=#{self.action_name} " if current_user str << "uid=#{current_user.id}" + str << "created_at=#{current_user.created_at.to_date.to_s}" if current_user.created_at else str << 'uid=nil' end