public
Description: Tracks is a GTD(TM) web application, built with Ruby on Rails
Homepage: http://www.rousette.org.uk/projects/
Clone URL: git://github.com/bsag/tracks.git
Click here to lend your support to: tracks and make a donation at www.pledgie.com !
add check for actions that should move from tickler to home page to the index 
page for todos
lrbalt (author)
Tue Oct 07 11:20:47 -0700 2008
commit  1118a582d7bd18c471821126c49bf8b6e000c76d
tree    571e85423ea3bc0ec2a080ed8cd0756a537b93c9
parent  b00b9282fd4336ebe96fb8e941dbe8d7e98b8f1b
...
10
11
12
 
13
14
15
...
10
11
12
13
14
15
16
0
@@ -10,6 +10,7 @@ class TodosController < ApplicationController
0
   session :off, :only => :index, :if => Proc.new { |req| is_feed_request(req) }
0
 
0
   def index
0
+    current_user.deferred_todos.find_and_activate_ready
0
     @projects = current_user.projects.find(:all, :include => [:default_context])
0
     @contexts = current_user.contexts.find(:all)
0
 

Comments