fix #999 by adding a menu to the mobile interface where you can choose the action you want to take on a todo, including deferring

This commit is contained in:
Reinier Balt 2011-07-10 21:48:43 +02:00
parent 174becee81
commit 5c015fea16
11 changed files with 603 additions and 523 deletions

View file

@ -20,7 +20,7 @@ ActionController::Routing::Routes.draw do |map|
map.resources :notes
map.resources :todos,
:member => {:toggle_check => :put, :toggle_star => :put},
:member => {:toggle_check => :put, :toggle_star => :put, :defer => :put},
:collection => {:check_deferred => :post, :filter_to_context => :post, :filter_to_project => :post, :done => :get, :all_done => :get
}