From 8151cd9473e05c13be7c0408572d111a849ec3da Mon Sep 17 00:00:00 2001 From: Reinier Balt Date: Thu, 8 Aug 2013 09:32:38 +0200 Subject: [PATCH] forgot to commit routing changes --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 4c3fccb3..669d5b4c 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -107,7 +107,7 @@ Tracksapp::Application.routes.draw do # Needed for /todos/tag/first.last.m to work get 'todos/tag/:name' => 'todos#tag', :as => :tag, :format => false, :name => /.*/ - get 'tags.autocomplete' => "todos#tags", :format => 'autocomplete' + get 'tags.autocomplete' => "todos#tags", :format => 'autocomplete', :as => :tags_autocomplete get 'todos/done/tag/:name' => "todos#done_tag", :as => :done_tag get 'todos/all_done/tag/:name' => "todos#all_done_tag", :as => :all_done_tag get 'auto_complete_for_predecessor' => 'todos#auto_complete_for_predecessor'